Skip to content

v1.1.2

v1.1.2 #41

Workflow file for this run

name: publish
on:
release:
types:
- published
jobs:
publish:
environment: npm
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Use Node.js 16.3.0
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: '16.3.0'
cache: 'yarn'
- run: yarn install --frozen-lockfile
- run: yarn test
- uses: JS-DevTools/npm-publish@19c28f1ef146469e409470805ea4279d47c3d35c # v3.1.1
with:
token: ${{ secrets.NPM_TOKEN }}
strategy: all