Skip to content

7.0.1

7.0.1 #23

Workflow file for this run

name: Publish Node.js Package
on:
release:
types: [published]
push:
tags:
- '*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14.x'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies & build packages
run: yarn install --frozen-lockfile
- name: Run tests
run: yarn test:ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}