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 d8c2ce4 commit 5a26e50Copy full SHA for 5a26e50
.github/workflows/build.yaml
@@ -1,4 +1,4 @@
1
-name: Node.js CI
+name: build
2
3
on: [push]
4
@@ -16,7 +16,7 @@ jobs:
16
17
# todo - lint commit messages
18
19
- - name: Use Node.js ${{ matrix.node-version }}
+ - name: Use node@${{ matrix.node-version }}
20
uses: actions/setup-node@v1
21
with:
22
node-version: ${{ matrix.node-version }}
@@ -36,7 +36,8 @@ jobs:
36
- name: Install dependencies
37
run: yarn --frozen-lockfile
38
39
- - run: yarn build --if-present
+ - name: Build
40
+ run: yarn build --if-present
41
# todo - make tests
42
# - run: yarn test:unit
43
# - run: yarn test:compatability
0 commit comments