Skip to content

Remove GitHub teams #1487

Remove GitHub teams

Remove GitHub teams #1487

Workflow file for this run

name: Jest Test
on:
push:
branches: [master]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Install modules
working-directory: ./public
run: npm i
- name: Run tests
working-directory: ./public/src/__tests__
run: npm test -- --testPathIgnorePatterns="/e2e/|/testHelpers/"