This repository has been archived by the owner on Dec 19, 2024. It is now read-only.
Sentry: temp disable production check #5813
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: Jest tests | |
on: [push] | |
jobs: | |
jest: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Setup and cache pnpm | |
uses: ./.github/actions/pnpm-setup | |
- name: Install workspaces | |
env: | |
VERDACCIO_AUTH_TOKEN: ${{ secrets.VERDACCIO_AUTH_TOKEN }} | |
run: pnpm install:all | |
- name: Run Jest tests | |
run: pnpm test | |
env: | |
ALGOLIA_API_KEY: ${{ secrets.ALGOLIA_API_KEY }} |