Skip to content

build(deps): bump actions/checkout from 4.1.3 to 4.1.5 #1077

build(deps): bump actions/checkout from 4.1.3 to 4.1.5

build(deps): bump actions/checkout from 4.1.3 to 4.1.5 #1077

Workflow file for this run

name: Build Frontend
on:
pull_request:
paths:
- 'frontend/**'
- 'Makefile'
- '.github/**'
jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [16.x]
steps:
- name: Check out code
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: ${{ matrix.node-version }}
- name: run ci
run: |
make ci
working-directory: frontend