Migrate Forge bridge to @forge/kvs and add /confluence forge reset command #20
Workflow file for this run
This file contains hidden or 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: forge-ci | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| paths: | |
| - 'forge/**' | |
| - '.github/workflows/forge-ci.yml' | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - 'forge/**' | |
| - '.github/workflows/forge-ci.yml' | |
| defaults: | |
| run: | |
| working-directory: forge | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: 'npm' | |
| cache-dependency-path: forge/package.json | |
| - run: npm install --omit=optional --no-audit --no-fund | |
| - run: npm audit --omit=optional --audit-level=moderate | |
| - run: npm run typecheck | |
| - run: npm run validate-manifest | |
| - run: npm run build |