Skip to content

Merge pull request #23 from mashehu/break-on-error #41

Merge pull request #23 from mashehu/break-on-error

Merge pull request #23 from mashehu/break-on-error #41

Workflow file for this run

name: Run tests
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
release:
types: [published]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: "npm"
- run: npm ci
- run: npm run build
- run: npm run format:check
- run: npm run lint
- run: npm run package
- run: npm run test
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}