Skip to content

Support string variables. #92

Support string variables.

Support string variables. #92

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- 16.x
- 18.x
- 20.x
- 22.x
steps:
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- uses: actions/checkout@v4
- run: npm ci
- run: npm run build
- run: npm test
spec:
runs-on: ubuntu-latest
strategy:
matrix:
spec:
- spec:base
- spec:query
- spec:update
- spec:star
- spec:all
- spec:earl
node-version:
- 22.x
steps:
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- uses: actions/checkout@v4
- run: npm ci
- run: npm run build
- run: npm run ${{ matrix.spec }}