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 a4027ac commit 7eb4770Copy full SHA for 7eb4770
.github/workflows/unit_tests.yml
@@ -4,18 +4,23 @@ on:
4
push:
5
branches:
6
- 'main'
7
- pull_request:
8
- branches:
9
- - 'main'
+ pull_request:
+ branches:
+ - 'main'
10
11
jobs:
12
tests:
13
- runs-on: ubuntu-latest, windows-latest, macos-latest
+ runs-on: ubuntu-latest
14
15
steps:
16
- name: Checkout code
17
uses: actions/checkout@v2
18
19
+ - name: Setup Node
20
+ uses: actions/setup-node@v2
21
+ with:
22
+ node-version: 16.18
23
+
24
- name: Compile Code
25
run:
26
make all
0 commit comments