Skip to content

Run Integration Tests #11

Run Integration Tests

Run Integration Tests #11

name: Run Integration Tests
on:
workflow_dispatch:
jobs:
test:
name: Testing
runs-on: ubuntu-latest
timeout-minutes: 20
env:
CI: true
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22.x'
cache: 'yarn'
- name: install dependencies
run: yarn --frozen-lockfile
- name: test
run: yarn test:integration