Skip to content

hotfix: Hotfix unit test #6

hotfix: Hotfix unit test

hotfix: Hotfix unit test #6

Workflow file for this run

name: Unit tests
on:
push:
branches: [master]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
registry-url: 'https://npm.pkg.github.com'
scope: '@bastiaanv'
- name: Install packages
run: npm install
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Build package
run: npm run build
- name: Test package
run: npm run test