mirror of
https://github.com/tauri-apps/tauricon.git
synced 2026-02-05 11:11:19 +01:00
* 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>
23 lines
334 B
YAML
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
|