Skip to content

Commit

Permalink
Don't use scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
dyladan committed Oct 5, 2022
1 parent 1db4eba commit 3fb8acd
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,16 @@ jobs:
with:
node-version: ${{ matrix.node_version }}

- run: npm install --prefix api --ignore-scripts

- run: npm run version --prefix api --ignore-scripts

- run: npm run compile --prefix api --ignore-scripts
- name: Build
working-directory: ./api
run: |
npm install --prefix api --ignore-scripts
node ../scripts/version-update.js
tsc --build tsconfig.json tsconfig.esm.json
- name: Test
run: npm test --prefix api
working-directory: ./api
run: npm test
# node-tests:
# strategy:
# fail-fast: false
Expand Down

0 comments on commit 3fb8acd

Please sign in to comment.