We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0305edc commit 6cfb76cCopy full SHA for 6cfb76c
.github/workflows/pull-request.yml
@@ -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