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

Handle workflow reruns for detecting CI failures #816

Handle workflow reruns for detecting CI failures

Handle workflow reruns for detecting CI failures #816

Workflow file for this run

name: CI
on: pull_request
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20.x'
- run: npm install
- run: npm run lint
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20.x'
- run: npm install
- run: npm run build
- run: npm test