8000 Bump happy-dom from 14.11.0 to 14.12.3 · chrishrb/techradar@5235dd6 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

CI

CI #122

Workflow file for this run

name: CI
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- name: Use Node.js 21
uses: actions/setup-node@v3
with:
node-version: 21
cache: 'pnpm'
- name: Run install
run: pnpm run ci
- name: Run build
run: pnpm build
- name: Run lint
run: pnpm lint
- name: Run test
run: pnpm test
0