Skip to content

chore: Use same checkout action version everywhere #1038

chore: Use same checkout action version everywhere

chore: Use same checkout action version everywhere #1038

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@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: run ci
run: |
make ci
working-directory: frontend