Skip to content

Add action to validate build on push/PRs, use Node.js 22 #2

Add action to validate build on push/PRs, use Node.js 22

Add action to validate build on push/PRs, use Node.js 22 #2

Workflow file for this run

name: Build
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
- name: Install modules
run: yarn
- name: Build
run: yarn build