Skip to content

chore: remove unused test files and dependnecies #75

chore: remove unused test files and dependnecies

chore: remove unused test files and dependnecies #75

Workflow file for this run

# 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
name: Run Test Cases
# Run on all branch
on:
push:
paths:
- '.github/workflows/run-test.yml'
- 'docs/**'
- 'src/**'
- 'test/**'
pull_request:
paths:
- '.github/workflows/run-test.yml'
- 'docs/**'
- 'src/**'
- 'test/**'
jobs:
test:
name: 'Test'
runs-on: ubuntu-latest
strategy:
matrix:
browser: [ChromeCi, Firefox]
steps:
- uses: actions/checkout@v2
- name: Use Node.js 12.x
uses: actions/setup-node@v1
with:
node-version: '12.x'
- name: Cache Node.js modules
uses: actions/cache@v1
with:
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Install dependencies
run: npm ci
- name: Run headless tests
run: xvfb-run --auto-servernum npm test
env:
CI: true
BROWSER: ${{ matrix.browser }}