Skip to content

Update build and code style #72

Update build and code style

Update build and code style #72

Workflow file for this run

name: Node.js CI
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '20'
- run: |
npm install
npm run lint
test:
name: test (Node.js ${{ matrix.node-version }})
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['14', '16', '18', '20']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: |
npm install
npm test
prepare-legacy-test:
name: prepare legacy test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '20'
- run: |
npm install
npm run prepare-legacy-test
- uses: actions/upload-artifact@v3
with:
name: node-legacy
path: test/node-legacy
legacy-test:
name: legacy test (Node.js ${{ matrix.node-version }})
needs: prepare-legacy-test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['0.10', '0.12', '4', '6', '8', '10', '12']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: actions/download-artifact@v3
with:
name: node-legacy
path: test/node-legacy
- run: npm run legacy-test