Skip to content

Add support for Cucumber 12 (#174) #211

Add support for Cucumber 12 (#174)

Add support for Cucumber 12 (#174) #211

Workflow file for this run

name: CI
on:
push:
branches: [master, release/**]
pull_request:
branches: [master, release/**]
jobs:
# Build and Test the 'cucumber-tsflow' package
build:
name: Build and Test
runs-on: ubuntu-latest
strategy:
matrix:
cucumberVersion: ["^7", "^8", "^9", "^10", "^11", "^12""]

Check failure on line 14 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 14
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 22
- name: Install npm packages
run: |-
npm ci
npm install @cucumber/cucumber@${{ matrix.cucumberVersion }}
- name: Build
run: npm run build
- name: Run specification tests
run: npm test