Skip to content

fix: fix types. (#191) #14

fix: fix types. (#191)

fix: fix types. (#191) #14

Workflow file for this run

name: Push to main branch
on:
push:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14.x'
- run: npm install
- run: npm run test
- run: npm run lint
- run: npm run build
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}