-
Notifications
You must be signed in to change notification settings - Fork 759
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
63 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | ||
|
||
name: Node.js CI | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
include: | ||
- node-version: 10.x | ||
test-on-old-node: 1 | ||
- node-version: 12.x | ||
test-on-old-node: 1 | ||
- node-version: 14.x | ||
- node-version: 16.x | ||
- node-version: 18.x | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: 'npm' | ||
- name: Install Dependencies On Old Node ${{ matrix.node-version }} | ||
if: ${{ matrix.test-on-old-node == '1' }} | ||
run: node ci/remove-deps-4-old-node.js && yarn install --ignore-scripts | ||
- name: Install Dependencies On Node ${{ matrix.node-version }} | ||
if: ${{ matrix.test-on-old-node != '1' }} | ||
run: yarn install | ||
- run: npm test | ||
- name: Coverage On Node ${{ matrix.node-version }} | ||
run: | ||
npm run coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
const fs = require('fs'); | ||
const path = require('path'); | ||
const package = require('../package.json'); | ||
|
||
const UNSUPPORT_DEPS_4_OLD = { | ||
'eslint': undefined, | ||
'mocha': '6.x' | ||
}; | ||
|
||
const deps = Object.keys(UNSUPPORT_DEPS_4_OLD); | ||
for (const item in package.devDependencies) { | ||
if (deps.includes(item)) { | ||
package.devDependencies[item] = UNSUPPORT_DEPS_4_OLD[item]; | ||
} | ||
} | ||
|
||
delete package.scripts.lint; | ||
|
||
fs.writeFileSync( | ||
path.join(__dirname, '../package.json'), | ||
JSON.stringify(package, null, 2) | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters