Skip to content

Commit

Permalink
chore: fix test workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
vinit717 committed Oct 14, 2024
1 parent 8fd1621 commit 1ff874e
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,18 @@ on:
branches: [main, develop]
push:
branches: [main, develop]

jobs:
Lint-Check:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: yarn
- run: yarn test
- uses: actions/checkout@v2

- name: Install system dependencies
run: |
echo 0 | sudo tee /proc/sys/kernel/apparmor_restrict_unprivileged_userns
- name: Install project dependencies
run: yarn install

- name: Run tests
run: yarn test

0 comments on commit 1ff874e

Please sign in to comment.