We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a74268 commit 1a8f562Copy full SHA for 1a8f562
.github/workflows/test.yml
@@ -0,0 +1,24 @@
1
+name: Test
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - master
7
+ - v4
8
+ - chore/github-actions
9
10
+jobs:
11
+ main:
12
+ name: Test
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v2
16
+ with:
17
+ fetch-depth: 1
18
19
+ - uses: actions/setup-node@v2
20
21
+ node-version: 18
22
+ cache: 'npm'
23
+ cache-dependency-path: '**/package-lock.json'
24
+ - run: make deps-project tests-ci
0 commit comments