File tree Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Original file line number Diff line number Diff line change 10
10
# The type of runner that the job will run on
11
11
runs-on : ubuntu-latest
12
12
13
- strategy :
14
- matrix :
15
- node-version : [16.x]
16
-
17
13
# Steps represent a sequence of tasks that will be executed as part of the job
18
14
steps :
19
15
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
@@ -22,18 +18,16 @@ jobs:
22
18
# pulls all commits (needed for lerna / semantic release to correctly version)
23
19
fetch-depth : ' 0'
24
20
25
- - name : Use Node.js ${{ matrix.node-version }}
21
+ - name : Use Node.js 16.x
26
22
uses : actions/setup-node@v2
27
23
with :
28
- node-version : ${{ matrix.node-version }}
24
+ node-version : 16.x
25
+ cache : ' npm'
29
26
30
27
- run : npm -v
31
28
- run : npm config set unsafe-perm true
32
29
- run : npm ci
33
30
34
- - run : sudo npx playwright install-deps
35
- - run : npm run test
36
-
37
31
- name : Authenticate with Registry
38
32
run : |
39
33
echo "@umbraco-ui:registry=https://registry.npmjs.org/" > .npmrc
You can’t perform that action at this time.
0 commit comments