Not accept arrays when objects are expected #597
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
pull_request: {} | |
jobs: | |
audit: | |
runs-on: ubuntu-latest | |
container: node:22.5.1-alpine3.19 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: npm ci | |
- run: npm --workspaces audit --audit-level high | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22.5.1 | |
- run: corepack enable | |
- run: rustup default 1.80.0 | |
- run: rustup target add wasm32-unknown-unknown | |
- run: cargo install [email protected] | |
- uses: actions/checkout@v4 | |
- run: npm ci | |
- run: npm --workspaces run build --if-present | |
- run: npm --workspaces test --if-present | |
fixtures: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22.5.1 | |
- run: corepack enable | |
- run: rustup default 1.80.0 | |
- run: rustup target add wasm32-unknown-unknown | |
- run: cargo install [email protected] | |
- uses: actions/checkout@v4 | |
- run: npm ci | |
- run: ./test-fixtures-npm | |
- run: ./package-fixtures-npm |