Skip to content
This repository was archived by the owner on Feb 24, 2023. It is now read-only.

Commit 7f01da6

Browse files
Workflows fixes
1 parent e48e2a4 commit 7f01da6

File tree

2 files changed

+21
-29
lines changed

2 files changed

+21
-29
lines changed

.github/workflows/lint.yml renamed to .github/workflows/test.yml

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
22
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
33

4-
name: lint
4+
name: test
55

66
on:
77
- pull_request
88

99
jobs:
10-
build:
10+
lint:
1111

1212
runs-on: ubuntu-latest
1313

@@ -25,3 +25,22 @@ jobs:
2525
- run: npm run lint
2626
env:
2727
CI: true
28+
29+
unit:
30+
31+
runs-on: ubuntu-latest
32+
33+
strategy:
34+
matrix:
35+
node-version: [10.x]
36+
37+
steps:
38+
- uses: actions/checkout@v2
39+
- name: lint
40+
uses: actions/setup-node@v1
41+
with:
42+
node-version: ${{ matrix.node-version }}
43+
- run: npm ci
44+
- run: npm run test:unit
45+
env:
46+
CI: true

.github/workflows/test:unit.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

0 commit comments

Comments
 (0)