Skip to content

Commit

Permalink
Fix CI to use subfolders correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
AurelienFT committed May 7, 2024
1 parent 81d0947 commit a1b1498
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@ name: massa sc ci tests
on: [push]
jobs:
sc-unit-tests:
defaults:
run:
working-directory: ./smart-contract
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -13,9 +10,13 @@ jobs:
with:
node-version: '18'
cache: 'npm'
working-directory: ./smart-contract

- name: Install
run: npm ci
working-directory: ./smart-contract

- name: Test
run: npm run test
working-directory: ./smart-contract

0 comments on commit a1b1498

Please sign in to comment.