Skip to content

Commit

Permalink
refactor(ci): simplify ci
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyDolle committed Feb 27, 2024
1 parent 7c24788 commit 1ee8b94
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .github/actions/deps-setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ inputs:
runs:
using: composite
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/boilerplate-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ jobs:
name: Run eslint, prettier, type check and jest tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: ./.github/actions/deps-setup
with:
working_directory: ./template
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/documentation-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ jobs:
name: Run eslint, prettier, type check and build tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: ./.github/actions/deps-setup
with:
working_directory: ./documentation
Expand Down

0 comments on commit 1ee8b94

Please sign in to comment.