Skip to content

Commit 6cfb76c

Browse files
committed
ci: added pull request workflow
1 parent 0305edc commit 6cfb76c

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/pull-request.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Deploy
2+
on:
3+
pull_request:
4+
types:
5+
- opened
6+
- reopened
7+
branches:
8+
- main
9+
10+
jobs:
11+
deploy:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v4
16+
17+
- name: Install
18+
uses: pnpm/action-setup@v4
19+
with:
20+
version: latest
21+
run_install: true
22+
23+
- name: TypeScript Compiler
24+
run: tsc --noEmit
25+
26+
- name: Lint
27+
run: eslint .

0 commit comments

Comments
 (0)