DESENG-373 Add backend contact form option #66
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint and Test LUP Admin | |
on: | |
pull_request: | |
branches: | |
- dev | |
jobs: | |
static_checks: | |
if: github.repository_owner == 'bcgov' && github.event.pull_request.draft == false | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 14 | |
- name: Install packages | |
run: npm install | |
- name: Run ESLint | |
run: npm run lint | |
- name: Run Tests | |
run: npm run tests -- --watch=false --browsers=ChromeHeadless |