Skip to content

Commit

Permalink
Merge branch 'main' into fix/module
Browse files Browse the repository at this point in the history
  • Loading branch information
yusukebe committed Sep 14, 2023
2 parents 00eec6e + 9be2e85 commit e2c3eb0
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci-dev-server.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: ci-dev-server
on:
push:
branches: [main]
paths:
- 'packages/dev-server/**'
pull_request:
branches: ['*']
paths:
- 'packages/dev-server/**'

jobs:
ci:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./packages/dev-server
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 20.x
- uses: pnpm/action-setup@v2
with:
version: 8
- run: pnpm install
- run: pnpm build
- run: pnpm test

0 comments on commit e2c3eb0

Please sign in to comment.