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

52 lines
1.1 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
2021-04-18 06:23:59 +07:00
- name: Setup Node.js 15.x
2020-06-09 08:48:43 +07:00
uses: actions/setup-node@v1
with:
2021-04-18 06:23:59 +07:00
node-version: 15.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: Send Coverage
continue-on-error: true
timeout-minutes: 1
2021-04-13 18:46:50 +07:00
run: curl -s https://codecov.io/bash | bash -s -- -t ${{secrets.CODECOV_TOKEN}} -f coverage/lcov.info -n github-actions-codecov-${{ matrix.operating-system }}