Skip to content

fix(ssg): respect resolve options when creating server #20

fix(ssg): respect resolve options when creating server

fix(ssg): respect resolve options when creating server #20

Workflow file for this run

name: ci
on:
push:
branches: [main]
paths:
- 'packages/**'
pull_request:
branches: ['*']
paths:
- 'packages/**'
jobs:
ci:
runs-on: ubuntu-24.04
defaults:
run:
working-directory: ./
strategy:
matrix:
task: [format, lint]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 24.x
- run: yarn install --frozen-lockfile
- name: Run task
run: yarn ${{ matrix.task }}