File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -73,16 +73,19 @@ jobs:
73
73
matrix :
74
74
version : [16, 18]
75
75
steps :
76
- - name : Initialize environment
77
- uses : angular/dev-infra/github-actions/npm/checkout-and-setup-node@0109d498b0f6aae418ed4924a5e5c65695f0ac61
76
+ - uses : actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
77
+ with :
78
+ persist-credentials : false
79
+ - uses : actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # v3.7.0
78
80
with :
79
81
node-version : ${{ matrix.version }}
82
+ cache : ' yarn'
83
+ - name : Install node modules
84
+ run : yarn install --frozen-lockfile
80
85
- name : Setup Bazel
81
86
uses : angular/dev-infra/github-actions/bazel/setup@0109d498b0f6aae418ed4924a5e5c65695f0ac61
82
87
- name : Setup Bazel RBE
83
88
uses : angular/dev-infra/github-actions/bazel/configure-remote@0109d498b0f6aae418ed4924a5e5c65695f0ac61
84
- - name : Install node modules
85
- run : yarn install --frozen-lockfile
86
89
- if : matrix.version == env.defaultVersion
87
90
name : Run tests for default node version
88
91
run : yarn bazel test --test_tag_filters=-node18,-node16-broken //packages/...
You can’t perform that action at this time.
0 commit comments