Files
tauricon/.github/workflows/test.yml
lzdyes 6b9980c160 fix: path not found on windows using local installation via npm, closes #23 (#21)
* fix: path not found on windows

* fix: change to the full path

* Revert "fix: change to the full path"

This reverts commit 8ea1f283d5.

* remove unused helper functions

* simplify test commands in package.json

* rebuild dist files

* fix(action): use correct test command in workflow

* resolve dir before reading dirname

Co-authored-by: lizhenda <lizhenda@skieer.com>
Co-authored-by: FabianLars <fabianlars@fabianlars.de>
2022-04-16 14:35:44 +02:00

23 lines
334 B
YAML

name: Test
on:
push:
branches:
- dev
pull_request:
branches:
- dev
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.x'
cache: 'yarn'
- run: yarn install
- run: yarn test