setup-php/.github/workflows/node.yml

61 lines
1.2 KiB
YAML
Raw Normal View History

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/**'
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
uses: actions/checkout@v2
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
2020-06-09 08:48:43 +07:00
uses: actions/setup-node@v1
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
- name: Run npm audit
run: npm audit
2020-06-09 08:48:43 +07:00
- name: Send Coverage
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage/lcov.info
name: github-actions-codecov-${{ matrix.operating-system }}
fail_ci_if_error: false
verbose: true