File tree Expand file tree Collapse file tree 1 file changed +22
-5
lines changed Expand file tree Collapse file tree 1 file changed +22
-5
lines changed Original file line number Diff line number Diff line change 6
6
test :
7
7
runs-on : ubuntu-latest
8
8
steps :
9
- - uses : actions/checkout@v3
10
- - uses : actions/setup-node@v3
9
+ - name : Checkout
10
+ uses : actions/checkout@v4.1.1
11
+
12
+ - name : Setup Node environment
13
+ uses : actions/setup-node@v4.0.1
11
14
with :
12
15
node-version : 20
16
+
13
17
- name : Cache Modules
14
- uses : actions/cache@v3
18
+ uses : actions/cache@v4
15
19
with :
16
20
path : " **/node_modules"
17
21
key : ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}
18
- - run : npm install
19
- - run : npm run test
22
+
23
+ - name : Install dependencies
24
+ run : npm install
25
+
26
+ - name : Build library
27
+ run : npm run release
28
+
29
+ - name : Run unit tests
30
+ run : npm run test
31
+
32
+ # - name: Run e2e tests
33
+ # run: npm run test:e2e
34
+
35
+ # - name: Submit to Codecov
36
+ # run: npm run codecov
20
37
You can’t perform that action at this time.
0 commit comments