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 00f319c commit 0699edbCopy full SHA for 0699edb
1 file changed
.github/workflows/build.yml
@@ -6,9 +6,9 @@ env:
6
7
on:
8
push:
9
- branches: [ "main" ]
+ branches: ["main"]
10
pull_request:
11
12
13
jobs:
14
build:
@@ -17,14 +17,15 @@ jobs:
17
18
steps:
19
- name: Checkout
20
- uses: actions/checkout@v3
+ uses: actions/checkout@v6
21
with:
22
fetch-depth: 0
23
- - uses: actions/setup-node@v3
+ - uses: actions/setup-node@v6
24
25
node-version: lts/*
26
- - uses: nrwl/nx-set-shas@v3
+ cache: npm
27
+ - uses: nrwl/nx-set-shas@v5
28
- name: npm install
29
run: npm install --force
30
- name: Build.all affected
- run: npx nx affected --target=build --exclude nativescript-demo-ng
31
+ run: npx nx affected --target=build,test --exclude nativescript-demo-ng
0 commit comments