Skip to content

Bump webrick from 1.8.1 to 1.8.2 in /docs #178

Bump webrick from 1.8.1 to 1.8.2 in /docs

Bump webrick from 1.8.1 to 1.8.2 in /docs #178

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v4
with:
node-version: 20.18.0
cache: npm
- name: Build Env Information
run: |
node -v
npm -v
- name: Install dependencies
run: npm ci
- name: Format check
run: npm run format:check
- name: Type check
run: npm run typecheck
- name: Lint check
run: npm run lint
- name: Test Vite Build
run: npm run package