2024-03-13 07:17:11 +00:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Set node
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: lts/*
|
|
|
|
|
|
|
|
- name: Install dependencies
|
2024-05-06 03:01:45 +00:00
|
|
|
run: npm install
|
2024-03-13 07:17:11 +00:00
|
|
|
|
|
|
|
- name: Lint
|
2024-05-06 03:01:45 +00:00
|
|
|
run: npm run lint
|