Merge pull request #5004 from cpinitiative/dongliuu-patch-1 #7806
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: | |
branches: | |
- master | |
paths-ignore: | |
- 'content/**' | |
- 'solutions/**' | |
pull_request: | |
branches: | |
- master | |
paths-ignore: | |
- 'content/**' | |
- 'solutions/**' | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 # Required to retrieve git history of Chromatic | |
- name: Use Node.js 20.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 20.x | |
- name: Cache node modules | |
uses: actions/cache@v2 | |
id: cache-node-modules | |
with: | |
path: node_modules | |
key: node-modules-${{ hashFiles('**/yarn.lock') }} | |
- name: Install dependencies | |
run: yarn | |
# hack to build graphql types | |
- name: Build GraphQL types | |
run: yarn build | |
env: | |
NODE_OPTIONS: --max-old-space-size=4096 | |
- name: Run tests | |
run: yarn test --passWithNoTests | |
- name: Check for typescript errors | |
run: yarn check-ts-errors | |
- name: Run eslint | |
run: yarn eslint --quiet | |
- name: Run chromatic | |
uses: chromaui/action@v1 | |
with: | |
projectToken: 6f3c58ad349c | |
token: ${{ secrets.GITHUB_TOKEN }} | |
exitZeroOnChanges: true # don't fail the workflow if snapshots change | |
lhci: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 20.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 20.x | |
- name: Cache node modules | |
uses: actions/cache@v2 | |
id: cache-node-modules | |
with: | |
path: node_modules | |
key: node-modules-${{ hashFiles('**/yarn.lock') }} | |
- run: yarn | |
- run: yarn build | |
env: | |
NODE_OPTIONS: --max-old-space-size=4096 | |
- name: run Lighthouse CI | |
run: | | |
npm install -g @lhci/[email protected] | |
lhci autorun | |
env: | |
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }} | |
# - name: Check Links | |
# uses: wunderundfitzig/linkcheck-action@v1 | |
# with: | |
# arguments: '--net=host :9000' |