Skip to content

Update build.yml to use Node v18 and v20. Removed Node v16 #31

Update build.yml to use Node v18 and v20. Removed Node v16

Update build.yml to use Node v18 and v20. Removed Node v16 #31

Workflow file for this run

name: Build
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["18", "20"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: cp .env.local.sample .env.local
- run: npm run build
continue-on-error: FALSE