Skip to content

implementing export maps and animations #422

implementing export maps and animations

implementing export maps and animations #422

Workflow file for this run

name: Run Jest Tests
on:
push:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '18'
- name: Cache yarn cache
uses: actions/cache@v2
with:
path: ~/.cache/yarn
key: ${{ runner.OS }}-yarn-${{ hashFiles('app/yarn.lock') }}
restore-keys: |
${{ runner.OS }}-yarn-
- name: Install dependencies
working-directory: app
run: yarn install
- name: Run Jest tests
working-directory: app
run: yarn test
- name: Archive test results
if: always()
uses: actions/upload-artifact@v2
with:
name: jest-test-results
path: app/test-results/junit/results.xml