Skip to content

Bump actions/checkout from 4.1.3 to 4.1.4 #101

Bump actions/checkout from 4.1.3 to 4.1.4

Bump actions/checkout from 4.1.3 to 4.1.4 #101

Workflow file for this run

name: Analysis
on:
pull_request:
push:
branches:
- main
jobs:
linting:
runs-on: ubuntu-22.04
steps:
- name: Checking out the repository
uses: actions/checkout@v4.1.4
- name: Using pnpm
uses: pnpm/action-setup@v3.0.0
- name: Using node version 20
uses: actions/setup-node@v4.0.2
with:
node-version: 20
cache: pnpm
- name: Installing dependencies
run: pnpm install --frozen-lockfile
- name: Running lint
run: pnpm run lint