Skip to content

Commit

Permalink
Fix all workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
irdkwmnsb committed Apr 9, 2024
1 parent fbf865a commit 9b82d7c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/lint-admin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: pnpm/action-setup@v2
with:
version: 8.15.6
- uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: 'src/frontend/package-lock.json'
cache: 'pnpm'
cache-dependency-path: 'src/frontend/pnpm-lock.yaml'
- name: "Install dependencies"
run: npm ci
working-directory: "src/frontend"
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,14 @@ jobs:
steps:
- uses: actions/checkout@v3

- uses: pnpm/action-setup@v2
with:
version: 8.15.6
- uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: 'src/frontend/package-lock.json'
cache: 'pnpm'
cache-dependency-path: 'src/frontend/pnpm-lock.yaml'

- name: Install dependencies
working-directory: ./src/frontend
Expand Down

0 comments on commit 9b82d7c

Please sign in to comment.