Skip to content

Bump astro from 4.16.14 to 4.16.18 in /docs #16

Bump astro from 4.16.14 to 4.16.18 in /docs

Bump astro from 4.16.14 to 4.16.18 in /docs #16

Workflow file for this run

name: Dusa tests (node v20)
on:
push:
jobs:
run-static-tests-node-20:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- name: Check formatting with prettier
run: npm run prettier:check
- name: Check for issues with eslint
run: npm run lint
- name: Check for type errors with typescript
run: npm run tsc
- name: Run unit tests
run: npm run test