Axe context #143
Workflow file for this run
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: Tests | |
on: [push, pull_request, workflow_call] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.node-version' | |
- name: Install deps | |
uses: bahmutov/npm-install@v1 | |
- name: Typecheck | |
run: npm run types | |
- name: Build | |
run: npm run build | |
- name: Lint | |
run: npm run lint | |
- name: Unit Tests | |
run: npm run test | |
- name: Prepare for Integration Tests | |
run: npm run demo:build | |
- name: Integration Tests | |
run: npm run test:integrationOnly | |
validate-on-eds: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.node-version' | |
- name: Install deps | |
uses: bahmutov/npm-install@v1 | |
- name: Build | |
run: npm run build | |
- name: Run on EDS | |
run: npm run demo:eds |