Merge pull request #61 from daichitakahashi/events #17
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 9 | |
run_install: false | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
cache: "pnpm" | |
- run: pnpm install | |
- run: docker pull postgres:16.1 | |
- run: pnpm test | |
working-directory: cf-eventhub | |
- run: pnpm test-node | |
working-directory: cf-eventhub | |
publish: | |
runs-on: ubuntu-latest | |
needs: test | |
permissions: | |
pull-requests: write | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 9 | |
run_install: false | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
cache: "pnpm" | |
- run: pnpm install | |
- run: pnpm build | |
working-directory: cf-eventhub | |
- run: pnpm build | |
working-directory: web-console | |
- run: pnpm build | |
working-directory: iac/pulumi | |
- uses: changesets/action@v1 | |
with: | |
publish: pnpm ci:publish | |
commit: Release npm packages | |
title: Release npm packages | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |