Skip to content

v1.0.13

v1.0.13 #54

Workflow file for this run

name: Deploy
on:
pull_request:
branches:
- main
push:
tags:
- v*
branches:
- main
jobs:
verify:
name: Verify
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
- name: Install Packages
run: yarn install --frozen-lockfile
- name: Linting
run: yarn run lint
- name: Coverage
run: yarn run test:coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
# - run: yarn publish
# env:
# NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}