2020-06-09 08:48:43 +07:00
|
|
|
name: Node workflow
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- develop
|
|
|
|
- verbose
|
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
|
|
|
- 'examples/**'
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- develop
|
|
|
|
- verbose
|
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
|
|
|
- 'examples/**'
|
2022-05-26 07:50:23 +07:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2020-06-09 08:48:43 +07:00
|
|
|
jobs:
|
|
|
|
run:
|
|
|
|
name: Run
|
|
|
|
runs-on: ${{ matrix.operating-system }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
operating-system: [ubuntu-latest, windows-latest, macos-latest]
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-09-09 17:53:40 +07:00
|
|
|
uses: actions/checkout@v4
|
2022-01-29 05:42:27 +07:00
|
|
|
with:
|
|
|
|
fetch-depth: 2
|
2020-06-09 08:48:43 +07:00
|
|
|
|
2021-12-07 23:03:45 +07:00
|
|
|
- name: Setup Node.js 16.x
|
2023-11-06 18:00:34 +07:00
|
|
|
uses: actions/setup-node@v4
|
2020-06-09 08:48:43 +07:00
|
|
|
with:
|
2021-12-07 23:03:45 +07:00
|
|
|
node-version: 16.x
|
2020-06-09 08:48:43 +07:00
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: npm install
|
|
|
|
|
|
|
|
- name: Prettier Format Check
|
|
|
|
run: npm run format-check
|
|
|
|
|
|
|
|
- name: ESLint Check
|
|
|
|
run: npm run lint
|
|
|
|
|
|
|
|
- name: Run tests
|
|
|
|
run: npm test
|
|
|
|
|
2022-01-20 23:15:07 +07:00
|
|
|
- name: Run npm audit
|
|
|
|
run: npm audit
|
|
|
|
|
2020-06-09 08:48:43 +07:00
|
|
|
- name: Send Coverage
|
2024-02-05 17:57:17 +07:00
|
|
|
uses: codecov/codecov-action@v4
|
2022-01-29 05:42:27 +07:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
|
|
files: coverage/lcov.info
|
|
|
|
name: github-actions-codecov-${{ matrix.operating-system }}
|
|
|
|
fail_ci_if_error: false
|
|
|
|
verbose: true
|