Skip to content

Create a new runs view for test workspaces #8666

Create a new runs view for test workspaces

Create a new runs view for test workspaces #8666

Workflow file for this run

name: "Tests: Jest"
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
# Force terminal colors. @see https://www.npmjs.com/package/colors
FORCE_COLOR: 1
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v2
# Get the yarn cache path.
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
- name: Restore yarn cache
uses: actions/cache@v3
id: yarn-cache
with:
path: |
${{ steps.yarn-cache-dir-path.outputs.dir }}
**/node_modules
key: yarn-cache-folder-${{ hashFiles('**/yarn.lock', '.yarnrc.yml') }}
restore-keys: "yarn-cache-folder-"
# Actually install packages with Yarn
- name: Install packages
run: yarn install
shell: bash
working-directory: packages/replay-next
- name: Run tests
run: yarn test
working-directory: packages/replay-next