sfm-js/.github/workflows/test.yml

46 lines
1 KiB
YAML
Raw Normal View History

2021-03-21 17:17:28 +00:00
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
2021-07-31 06:12:43 +00:00
name: Test and coverage
2021-03-21 17:17:28 +00:00
2021-07-31 06:12:43 +00:00
on: [push, pull_request]
2021-03-21 17:17:28 +00:00
jobs:
2021-04-01 09:32:26 +00:00
test:
2021-03-21 17:17:28 +00:00
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.10.0]
2021-03-21 17:17:28 +00:00
steps:
2021-07-31 06:12:43 +00:00
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ~/.npm
key: npm-${{ hashFiles('package-lock.json') }}
restore-keys: npm-
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm test
env:
CI: true
- name: Upload Coverage
uses: codecov/codecov-action@v1