Skip to content

Add test command

Add test command #179

Workflow file for this run

name: CI
on:
push:
branches: ['main']
tags: ['*']
pull_request:
branches: ['main']
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
- run: npm ci
- run: npm run lint
- run: npm run build
- run: ./bin/run --version
- run: ./bin/run --help
- run: npm test -- --verbose
publish:
name: Publish
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
needs:
- test
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm publish || true
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}