Skip to content

Bump actions/checkout from 4 to 5 in the major group #102

Bump actions/checkout from 4 to 5 in the major group

Bump actions/checkout from 4 to 5 in the major group #102

Workflow file for this run

name: Build
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Install dependencies
run: npm install
- name: Run build
run: npm run build