Skip to content

Commit f6488fd

Browse files
committed
feat: create pull-request-code-checks workflow
1 parent 8e2b6b7 commit f6488fd

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: pull-request-code-checks
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
8+
jobs:
9+
build:
10+
name: Build
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v4
16+
17+
- name: Setup
18+
uses: ./.github/actions/setup
19+
20+
- name: Build
21+
run: yarn build
22+
23+
lint:
24+
name: Lint
25+
runs-on: ubuntu-latest
26+
27+
steps:
28+
- name: Checkout
29+
uses: actions/checkout@v4
30+
31+
- name: Setup
32+
uses: ./.github/actions/setup
33+
34+
- name: Lint
35+
run: yarn lint

0 commit comments

Comments
 (0)