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

64 lines
1.5 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: Harden Runner
uses: step-security/harden-runner@v1
2021-11-10 10:06:00 +07:00
with:
allowed-endpoints:
codecov.io.:443
github.com.:443
nodejs.org.:443
raw.githubusercontent.com.:443
registry.npmjs.org.:443
setup-php.com.:443
storage.googleapis.com.:443
2020-06-09 08:48:43 +07:00
- 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 }}