Skip to content

Commit e58a38b

Browse files
committed
Remove Canvas package
1 parent a44021a commit e58a38b

File tree

3 files changed

+142
-28
lines changed

3 files changed

+142
-28
lines changed

.github/workflows/nodejs-ci.yml

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,34 @@
1-
name: Node.js CI
1+
name: Solo Test
22

33
on:
44
push:
5-
branches: [ develop ]
5+
branches: [ develop, main ]
66
pull_request:
77
branches: [ develop ]
88

99
jobs:
10-
build:
11-
10+
test:
11+
name: Run Solo Tests
1212
runs-on: ubuntu-latest
1313

1414
strategy:
1515
matrix:
1616
node-version: [16.x]
1717

1818
steps:
19-
- uses: actions/checkout@v2
19+
- name: Checkout source code
20+
uses: actions/checkout@v2
21+
2022
- name: Use Node.js ${{ matrix.node-version }}
2123
uses: actions/setup-node@v2
2224
with:
2325
node-version: ${{ matrix.node-version }}
24-
- run: npm ci
25-
- run: npm run build --if-present
26-
- run: npm test
26+
27+
- name: Run npm install
28+
run: npm ci
29+
30+
- name: Run build process
31+
run: npm run build --if-present
32+
33+
- name: Run embedded tests
34+
run: npm test

0 commit comments

Comments
 (0)