root が適切に設定されていれば rollupOptions 不要だった #866
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: ci | |
on: | |
push: | |
paths-ignore: | |
- "**.md" | |
- "LICENSE" | |
- "NOTICE" | |
jobs: | |
ci: | |
runs-on: ubuntu-24.04 | |
strategy: | |
matrix: | |
node: ["18", "20", "22"] | |
typescript: ["5.1", "5.2", "5.3", "5.4", "5.5", "5.6", "5.7"] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- uses: pnpm/action-setup@v4 | |
- run: pnpm --version | |
- run: pnpm install | |
- run: pnpm add -E -D typescript@${{ matrix.typescript }} -w | |
- run: pnpm run build | |
- run: pnpm run lint | |
- run: pnpm run check | |
- run: pnpm run test | |
slack_notify_failed: | |
needs: [ci] | |
runs-on: ubuntu-24.04 | |
if: failure() | |
steps: | |
- name: Slack Notification | |
uses: rtCamp/action-slack-notify@v2 | |
env: | |
SLACK_CHANNEL: sora-js-sdk | |
SLACK_COLOR: danger | |
SLACK_TITLE: Failed | |
SLACK_ICON_EMOJI: ":japanese_ogre:" | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} |