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.
2 parents a9982cd + 52b25fa commit 11db888Copy full SHA for 11db888
.github/workflows/lint-compile-test.yml
@@ -0,0 +1,28 @@
1
+# Lint, compile and test
2
+name: Lint, compile and test
3
+
4
+on:
5
+ push:
6
+ branches: [ "main" ]
7
+ pull_request:
8
9
10
+jobs:
11
+ build:
12
13
+ runs-on: ubuntu-latest
14
15
+ strategy:
16
+ matrix:
17
+ node-version: [20.x]
18
19
+ steps:
20
+ - uses: actions/checkout@v3
21
+ - name: Use Node.js ${{ matrix.node-version }}
22
+ uses: actions/setup-node@v3
23
+ with:
24
+ node-version: ${{ matrix.node-version }}
25
+ - run: npm install
26
+ - run: npm run lint
27
+ - run: npm run compile
28
+ - run: npm run test
0 commit comments