Skip to content

fix: [FIXUP]

fix: [FIXUP] #8617

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- '**'
push:
branches:
- '**'
jobs:
tests:
if: ${{ ! startsWith(github.head_ref, 'dependabot/') }}
runs-on: ubuntu-latest
steps:
- name: Checkout git repository
uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'yarn'
- name: Run tests
run: yarn install && yarn test
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}