Skip to content

Bump actions/checkout from 4.1.7 to 4.2.0 (#790) #1324

Bump actions/checkout from 4.1.7 to 4.2.0 (#790)

Bump actions/checkout from 4.1.7 to 4.2.0 (#790) #1324

Workflow file for this run

name: "Test build"
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
NODE_VERSION: 18
jobs:
build_frontend:
name: Test build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.0
with:
submodules: recursive
- name: Set up Node ${{ env.NODE_VERSION }}
uses: actions/setup-node@v4.0.4
with:
node-version: ${{ env.NODE_VERSION }}
cache: yarn
- name: Install dependencies
run: script/bootstrap
- name: Build
run: script/build