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

Bump lint-staged from 13.2.3 to 15.2.0 #1197

Bump lint-staged from 13.2.3 to 15.2.0

Bump lint-staged from 13.2.3 to 15.2.0 #1197

Workflow file for this run

name: Linting and Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm instalL
run: npm ci
- name: Lint
run: npm run lint
- name: Format Check
run: npm run format-check
- name: Test
run: npm test
env:
CI: true