Skip to content

v1.1.5

v1.1.5 #9

Workflow file for this run

name: Publish
on:
release:
types:
- published
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Use Node.js 18.x
uses: actions/[email protected]
with:
cache: npm
node-version: 18.x
registry-url: 'https://registry.npmjs.org'
- name: Install
run: npm install -g npm@9 && npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm run test
- name: Build
run: npm run build
- name: Publish
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}