Skip to content

added a notice about saving changes first before testing #1272

added a notice about saving changes first before testing

added a notice about saving changes first before testing #1272

Workflow file for this run

name: "Run tests"
on:
pull_request:
branches:
- "main"
workflow_dispatch:
permissions:
contents: read
jobs:
run_tests:
name: Run integration tests
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "20.x"
- name: Activate corepack
run: |
corepack install
corepack enable
- name: Install dependencies
run: yarn --immutable
- name: Run tests
run: yarn test