Skip to content

feat: decorator order #18

feat: decorator order

feat: decorator order #18

Workflow file for this run

name: CI
on:
push:
branches:
- "**"
jobs:
build:
strategy:
matrix:
version: [ 18, 20 ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.version }}
cache: "pnpm"
- run: pnpm install --frozen-lockfile
- run: pnpm run lint && pnpm run build
- run: pnpm run test && pnpm run test:e2e