Skip to content

CI/CD: drop Node 18, add Node 22 #281

CI/CD: drop Node 18, add Node 22

CI/CD: drop Node 18, add Node 22 #281

Workflow file for this run

name: TypeScript - Build
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- uses: actions/checkout@v4
- name: Build with Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --production=false
- run: yarn build
env:
CI: true