Skip to content

Commit

Permalink
pipeline fix
Browse files Browse the repository at this point in the history
  • Loading branch information
besdar committed Sep 20, 2024
1 parent a76ecb6 commit 769f0ea
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version-file: package.json
cache: npm
cache: 'npm'

- name: Install Node.js dependencies
run: npm ci
Expand All @@ -29,8 +29,10 @@ jobs:
needs: setup

steps:
- name: Check out Git repository
uses: actions/checkout@v4
- uses: actions/cache/restore@v4
with:
path: wordum/node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

- name: Lint
run: npm run lint:check
Expand All @@ -44,6 +46,11 @@ jobs:
- name: Check out Git repository
uses: actions/checkout@v4

- uses: actions/cache/restore@v4
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

- name: Types
run: npm run types:check

Expand Down

0 comments on commit 769f0ea

Please sign in to comment.