Skip to content

ci: extend changeset workflow to next branch (#247) #99

ci: extend changeset workflow to next branch (#247)

ci: extend changeset workflow to next branch (#247) #99

Workflow file for this run

name: ci
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
e2e-tests:
name: "E2E tests"
strategy:
fail-fast: false
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "24"
- uses: pnpm/action-setup@v4
with:
version: 9.15.3
- name: Install project dependencies
run: pnpm i
- name: Build project
run: pnpm run build
- name: Run tests
run: pnpm run test