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-04 15:52:37 +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:
|
|
|
|
- uses: actions/checkout@v2
|
2021-05-04 15:50:19 +05:30
|
|
|
- name: Run unit tests
|
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-04 15:46:59 +05:30
|
|
|
- run: npm test
|