Skip to content

Commit

Permalink
👻 Updates node action, version and install to use ci
Browse files Browse the repository at this point in the history
  • Loading branch information
runeharlyk committed Feb 26, 2024
1 parent 13b7550 commit e56968a
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/app-unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,19 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8

- name: Setup Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: '16'
node-version: 'latest'
cache: 'pnpm'

- name: Install dependencies
run: pnpm install
run: pnpm ci

- name: Run tests
run: pnpm test

0 comments on commit e56968a

Please sign in to comment.