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 348824d commit f586e24Copy full SHA for f586e24
.github/workflows/pull-requests.yml
@@ -0,0 +1,35 @@
1
+name: Pull requests
2
+
3
+on:
4
+ pull_request:
5
6
+jobs:
7
+ all-pr-checks:
8
+ runs-on: ubuntu-latest
9
+ needs: build-and-test
10
+ steps:
11
+ - run: echo "Done"
12
13
+ build-and-test:
14
15
16
+ strategy:
17
+ matrix:
18
+ node:
19
+ - "current"
20
+ - "lts/*"
21
22
+ name: Build & Test on Node ${{ matrix.node }}
23
24
+ - name: Checkout
25
+ uses: actions/checkout@v4
26
27
+ - name: Install NPM Dependencies
28
+ uses: ./.github/workflows/actions/install-npm-dependencies
29
+ with:
30
+ version: ${{ matrix.node }}
31
32
+ - name: Build
33
+ run: pnpm build
34
+ - name: Unit Tests
35
+ run: pnpm test:unit
0 commit comments