Skip to content

Commit 6db0166

Browse files
committed
fix(crow): Crow update minor dependencies
1 parent 2d3671d commit 6db0166

File tree

23 files changed

+7389
-5510
lines changed

23 files changed

+7389
-5510
lines changed

.github/workflows/nodejs.yml

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,26 @@ on: [push, pull_request]
44

55
jobs:
66
build:
7-
87
runs-on: ubuntu-latest
98

109
strategy:
1110
matrix:
12-
node-version: [12.x, 14.x]
11+
node-version: [20.x]
1312

1413
steps:
15-
- uses: actions/checkout@v2
16-
- name: Use Node.js ${{ matrix.node-version }}
17-
uses: actions/setup-node@v1
18-
with:
19-
node-version: ${{ matrix.node-version }}
20-
- run: npm install -g codeclimate-test-reporter
21-
- run: npm install
22-
- run: npm test
23-
env:
24-
CI: true
25-
- run: |
26-
if [ "$CODECLIMATE_REPO_TOKEN" != "" ]; then
27-
codeclimate-test-reporter < coverage/lcov.info
28-
fi
29-
env:
30-
CODECLIMATE_REPO_TOKEN: ${{ secrets.codeclimate }}
14+
- uses: actions/checkout@v2
15+
- name: Use Node.js ${{ matrix.node-version }}
16+
uses: actions/setup-node@v1
17+
with:
18+
node-version: ${{ matrix.node-version }}
19+
- run: npm install -g codeclimate-test-reporter
20+
- run: npm install
21+
- run: npm test
22+
env:
23+
CI: true
24+
- run: |
25+
if [ "$CODECLIMATE_REPO_TOKEN" != "" ]; then
26+
codeclimate-test-reporter < coverage/lcov.info
27+
fi
28+
env:
29+
CODECLIMATE_REPO_TOKEN: ${{ secrets.codeclimate }}

0 commit comments

Comments
 (0)