Skip to content

Commit ae969ed

Browse files
Fine-tune workflows
Signed-off-by: Anatoli Nicolae <an@thundersquared.com>
1 parent ab1409e commit ae969ed

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ jobs:
66
build:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v3
10-
- uses: actions/setup-node@v3
9+
- uses: actions/checkout@v4.1.1
10+
- uses: actions/setup-node@v4.0.2
1111
with:
1212
node-version: "18.x"
1313
registry-url: "https://registry.npmjs.org"

.github/workflows/test.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
1-
name: test
1+
name: Test Build
22

33
on: [push]
44

55
jobs:
66
test:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v3
10-
- name: install and test
11-
run: |
12-
yarn install
13-
yarn demo-build
9+
- uses: actions/checkout@v4.1.1
10+
- uses: actions/setup-node@v4.0.2
11+
with:
12+
node-version: "18.x"
13+
registry-url: "https://registry.npmjs.org"
14+
scope: "@apiscp"
15+
- run: yarn install
16+
- run: yarn demo-build

0 commit comments

Comments
 (0)