2021-05-04 15:46:59 +05:30
|
|
|
# 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-05-20 14:49:04 +05:30
|
|
|
name: Unit tests
|
2021-05-04 15:46:59 +05:30
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
node-version: [14.x]
|
|
|
|
|
|
|
|
steps:
|
2021-05-20 14:41:57 +05:30
|
|
|
- name: Install
|
2021-05-20 14:52:53 +05:30
|
|
|
- uses: actions/checkout@v2
|
2021-05-04 15:46:59 +05:30
|
|
|
uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node-version }}
|
2021-05-04 15:50:19 +05:30
|
|
|
- run: npm install --also=dev
|
2021-05-20 14:41:57 +05:30
|
|
|
- name: Unit tests
|
2021-05-04 15:46:59 +05:30
|
|
|
- run: npm test
|
2021-05-20 14:41:57 +05:30
|
|
|
- name: Lint
|
|
|
|
- run: npm run lint-ci
|