Skip to content

Add filter logs by status code #58

Add filter logs by status code

Add filter logs by status code #58

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:

Check failure on line 12 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 12, Col: 3): The workflow must contain at least one job with no dependencies.
name: Lint
runs-on: ubuntu-latest
needs: build
strategy:
matrix:
node:
- 18.x
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: ${{ runner.os }}-node-
- run: npm install
- run: npm run lint