Skip to content

[deps]: Update actions/checkout action to v4 #190

[deps]: Update actions/checkout action to v4

[deps]: Update actions/checkout action to v4 #190

Workflow file for this run

name: main
on:
push:
pull_request:
jobs:
# Perform a variety of checks
lint:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Install NodeJS
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
with:
node-version: 18
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run linter
run: yarn run lint:check