Skip to content

chore(deps): update actions/checkout action to v5 (#1215) #236

chore(deps): update actions/checkout action to v5 (#1215)

chore(deps): update actions/checkout action to v5 (#1215) #236

Workflow file for this run

name: Node
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: install deps
run: npm i
- name: lint
run: npm run lint