Skip to content
This repository has been archived by the owner on May 7, 2024. It is now read-only.

Bump actions/checkout from 2 to 4 #116

Bump actions/checkout from 2 to 4

Bump actions/checkout from 2 to 4 #116

Workflow file for this run

---
name: Linting and Types
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
name: Linting and Types
strategy:
matrix:
node-version: [14.x]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
always-auth: false
node-version: ${{ matrix.node-version }}
- name: Run npm install
run: npm install
- name: Run lint:everything
run: npm run lint:everything
env:
CI: true