Sharkey/.github/workflows/test.yml

37 lines
939 B
YAML
Raw Normal View History

2021-06-12 16:42:44 +03: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-06-12 16:47:11 +03:00
name: Test
2021-06-12 16:42:44 +03:00
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- 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: Install
run: npm i
- name: Build
run: npm run build
- name: Test
run: npm run test
2021-06-25 03:46:40 +03:00
- name: Upload Coverage
uses: codecov/codecov-action@v1