Skip to content

hotfix unused import #13

hotfix unused import

hotfix unused import #13

Workflow file for this run

name: Publish RC to NPM
on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+'
jobs:
publish:
runs-on: ubuntu-latest
strategy:
matrix:
nodejs: [ 18 ]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.nodejs }}
- name: Publish
run: |
yarn install
yarn build
yarn lint
yarn test
yarn publish-rc
env:
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}