Skip to content

Commit

Permalink
Use current node and yarn version in PR workflow (#154)
Browse files Browse the repository at this point in the history
  • Loading branch information
scinos authored Nov 5, 2024
1 parent 73e8f77 commit d03367a
Showing 1 changed file with 6 additions and 13 deletions.
19 changes: 6 additions & 13 deletions .github/workflows/pr-build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,24 +14,17 @@ jobs:
- name: Checkout
uses: actions/checkout@master

- name: Get yarn cache
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"

- uses: actions/cache@v1
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Enable Corepack
run: corepack enable

- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 19
cache: yarn
node-version-file: .nvmrc

- name: Install Dependencies
run: yarn install --frozen-lockfile
run: yarn install --immutable

- name: Lint
run: yarn lint
Expand Down

0 comments on commit d03367a

Please sign in to comment.