Skip to content

Add improved response headers #41

Add improved response headers

Add improved response headers #41

Workflow file for this run

name: Test
on: [pull_request]
env:
RUSTFLAGS: "-Dwarnings"
jobs:
test-node:
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
matrix:
node: [22]
name: Node ${{ matrix.node }} Test
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- uses: dtolnay/rust-toolchain@stable
- uses: jetli/[email protected]
with:
version: latest
- uses: Swatinem/rust-cache@v2
- run: npm ci
- run: npm run lint:rs
- run: npm run build
- run: npm run lint:js
- run: npm run check-types
- run: cargo clippy --all-targets --all-features
- run: npm run test