Skip to content

Commit

Permalink
upgrade GH Actions Workflows
Browse files Browse the repository at this point in the history
* build against newer nodes
* upgrade actions versions
* cache dependencies
  • Loading branch information
makrsmark committed Feb 26, 2024
1 parent bbc0c8f commit b9ad766
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/yarn-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,15 @@ jobs:

strategy:
matrix:
node-version: [18.x]
# build against all active LTS and latest node
node-version: [18.x, 20.x, latest]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- run: yarn install
- run: yarn test

0 comments on commit b9ad766

Please sign in to comment.