Skip to content

[#0] footer link temp fix for chat/support #381

[#0] footer link temp fix for chat/support

[#0] footer link temp fix for chat/support #381

Workflow file for this run

name: Run tests and linting
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 2
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install XVFB
run: sudo apt-get install xvfb
- name: Install dependencies
run: npm install
- name: Run the tests
run: xvfb-run -a npm test
# - name: Upload coverage to Codecov
# uses: codecov/codecov-action@v2
- name: run the linters
run: npm run lint