Skip to content

Commit

Permalink
chore: fix build workflow
Browse files Browse the repository at this point in the history
chore: fix build workflow
  • Loading branch information
orestbida authored Sep 6, 2024
2 parents 7892736 + ef9c907 commit 7e4230e
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
name: Build
on:
push:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 8
version: 9
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
Expand Down

0 comments on commit 7e4230e

Please sign in to comment.