Skip to content

Commit

Permalink
test: remove skip
Browse files Browse the repository at this point in the history
  • Loading branch information
adrums86 committed Jan 29, 2025
1 parent 5e00808 commit 3b86473
Showing 1 changed file with 2 additions and 16 deletions.
18 changes: 2 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,7 @@ name: ci
on: [push, pull_request]

jobs:
should-skip:
continue-on-error: true
runs-on: ubuntu-latest
# Map a step output to a job output
outputs:
should-skip-job: ${{steps.skip-check.outputs.should_skip}}
steps:
- id: skip-check
uses: fkirc/skip-duplicate-actions@v2.1.0
with:
github_token: ${{github.token}}

ci:
needs: should-skip
if: ${{needs.should-skip.outputs.should-skip-job == 'true'}}
strategy:
fail-fast: false
matrix:
Expand All @@ -31,7 +17,7 @@ jobs:
uses: actions/checkout@v2

- name: Cache dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
~/.npm
Expand Down Expand Up @@ -72,6 +58,6 @@ jobs:
run: npm i --prefer-offline --no-audit

- name: run npm test
uses: GabrielBB/xvfb-action@v1
uses: coactions/setup-xvfb@v1
with:
run: npm run test

0 comments on commit 3b86473

Please sign in to comment.