Skip to content

chore: add 2023 projects #212

chore: add 2023 projects

chore: add 2023 projects #212

Workflow file for this run

name: Lint checks
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
package-lock:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: yarn install
- name: Run check
run: node scripts/package-lock-check.js
prettier:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: yarn install
- name: Run check
run: npm run lint