hexo-yam/.github/workflows/tester.yml

59 lines
1.6 KiB
YAML
Raw Normal View History

2020-09-05 12:43:05 +00:00
name: Tester
on: [push, pull_request]
jobs:
tester:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
2022-11-05 02:02:16 +00:00
node-version: ['14', '16', '18', '19']
2020-09-05 12:43:05 +00:00
fail-fast: false
steps:
- uses: actions/checkout@v3
2020-09-05 12:43:05 +00:00
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
2020-09-05 12:43:05 +00:00
with:
node-version: ${{ matrix.node-version }}
- name: Cache NPM dependencies
uses: actions/cache@v3
2020-09-05 12:43:05 +00:00
with:
path: node_modules
key: ${{ runner.os }}-npm-cache
restore-keys: ${{ runner.os }}-npm-cache
- name: Install Dependencies
run: npm install
- name: Test
run: npm run test
env:
CI: true
coverage:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: ['14.x']
2020-09-05 12:43:05 +00:00
steps:
- uses: actions/checkout@v3
2020-09-05 12:43:05 +00:00
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
2020-09-05 12:43:05 +00:00
with:
node-version: ${{ matrix.node-version }}
- name: Cache NPM dependencies
uses: actions/cache@v3
2020-09-05 12:43:05 +00:00
with:
path: node_modules
key: ${{ runner.os }}-npm-cache
restore-keys: ${{ runner.os }}-npm-cache
- name: Install Dependencies
run: npm install
- name: Coverage
run: npm run test
env:
CI: true
- name: Upload coverage report to Codecov
uses: codecov/codecov-action@v3
2020-09-05 12:43:05 +00:00
with:
fail_ci_if_error: true