Skip to content

Fix: update Node versions #472

Fix: update Node versions

Fix: update Node versions #472

Workflow file for this run

name: Client
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: website
strategy:
matrix:
node-version: [20.x.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Setup PNPM
run: npm install -g pnpm
- name: Setup NodeJS with PNPM caching
uses: actions/setup-node@v3
with:
node-version: "20.9.0"
cache: pnpm
- run: pnpm install
- run: npm run build
env:
CI: true