-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (51 loc) · 1.19 KB
/
lint.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: Test
on:
push:
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- run: yarn install
- name: eslint
uses: reviewdog/action-eslint@v1
with:
github_token: ${{ secrets.github_token }}
reporter: github-pr-review
eslint_flags: "src/**/*.{ts,tsx}"
fail_level: any
build-test:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: Cache node_modules, .next/cache, .npm
uses: actions/cache@v4
with:
path: |
node_modules
.next/cache
.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
- name: setup-node
uses: actions/setup-node@v4
with:
node-version: 22
- name: install
run: yarn install
- name: build
run: yarn build
status-check:
runs-on: ubuntu-latest
needs: [lint, build-test]
if: failure()
steps:
- run: exit 1