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 5572ebf commit e205737Copy full SHA for e205737
.github/workflows/pull-request.yml
@@ -0,0 +1,22 @@
1
+name: PR review
2
+on:
3
+ pull_request:
4
+jobs:
5
+ code-quality:
6
+ name: Code quality
7
+ runs-on: ubuntu-latest
8
+ strategy:
9
+ matrix:
10
+ test-name: [lint, ts, format]
11
+ steps:
12
+ - name: Checkout
13
+ uses: actions/checkout@v4
14
+ - name: Set up Node.js
15
+ uses: actions/setup-node@v4
16
+ with:
17
+ node-version: 20.11.1
18
+ cache: yarn
19
+ - name: Install dependencies
20
+ run: yarn
21
+ - name: test ${{ matrix.test-name }}
22
+ run: yarn test:${{ matrix.test-name }}
package.json
@@ -6,7 +6,7 @@
],
"packageManager": "yarn@3.4.1",
"engines": {
- "node": "v20.10.0"
+ "node": "v20.11.1"
},
"scripts": {
"format": "concurrently 'yarn:format:*'",
0 commit comments