Skip to content

Commit

Permalink
Run build against Node 20 on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
caleb531 committed Oct 14, 2023
1 parent 32a8774 commit 1b54a28
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, and build the source code
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: build

on:
push:
branches: ['*']
pull_request:
branches: ['*']

jobs:
build:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
node-version: [16.x, 18.x, 19.x, 20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v3
with:
submodules: recursive

- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: latest

- name: Install Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'

- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Run build
run: pnpm build

0 comments on commit 1b54a28

Please sign in to comment.