Skip to content

Commit

Permalink
fix(workflows): set node v to lts/* and pnpm to 8 (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
BalbinaK committed Jun 12, 2023
1 parent 411526f commit 413058d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.pr.yml
Expand Up @@ -11,11 +11,11 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: current
node-version: lts/*
- name: Install pnpm and dependencies
uses: pnpm/action-setup@v2
with:
version: 7
version: 8
run_install: true
- name: Lint
run: pnpm lint:check
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Expand Up @@ -16,11 +16,11 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: current
node-version: lts/*
- name: Install pnpm and dependencies
uses: pnpm/action-setup@v2
with:
version: 7
version: 8
run_install: true
- name: Test
run: pnpm test
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.js.yml
Expand Up @@ -11,11 +11,11 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: current
node-version: lts/*
- name: Install pnpm and dependencies
uses: pnpm/action-setup@v2
with:
version: 7
version: 8
run_install: true
- name: Test and build
run: |
Expand Down

0 comments on commit 413058d

Please sign in to comment.