Skip to content

build(deps-dev): bump @cucumber/cucumber from 12.2.0 to 12.3.0 (#379) #132

build(deps-dev): bump @cucumber/cucumber from 12.2.0 to 12.3.0 (#379)

build(deps-dev): bump @cucumber/cucumber from 12.2.0 to 12.3.0 (#379) #132

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 10
run_install: false
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "lts/*"
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Run Prettier check
run: pnpm exec prettier . --check
- name: Run ESLint check
run: pnpm lint
- name: Run TypeScript check
run: pnpm tsc
- name: Run E2E tests
run: pnpm e2e