chore(deps): update dependency axios to v1.13.5 [security] #927
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
| # NOTE: This name appears in GitHub's Checks API and in workflow's status badge. | |
| name: ci-build | |
| # Trigger the workflow when: | |
| on: | |
| # A push occurs to one of the matched branches. | |
| push: | |
| branches: [master] | |
| # Or when a pull request event occurs for a pull request against one of the | |
| # matched branches. | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| build: | |
| # NOTE: This name appears in GitHub's Checks API. | |
| name: build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: 'recursive' | |
| - name: Set up Node.js 20 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20.x' | |
| - uses: pnpm/action-setup@v4 | |
| name: Install pnpm | |
| with: | |
| version: 10 | |
| run_install: false | |
| - name: Set workflow variables | |
| # Id is needed to access output in a next step. | |
| id: vars | |
| run: | | |
| echo "PNPM_CACHE_DIR=$(pnpm store path)" >> "$GITHUB_OUTPUT" | |
| echo "SHORT_SHA=$(git rev-parse --short HEAD)" >> "$GITHUB_OUTPUT" | |
| - uses: actions/cache@v3 | |
| name: Setup pnpm cache | |
| with: | |
| path: ${{ steps.vars.outputs.PNPM_CACHE_DIR }} | |
| key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-pnpm-store- | |
| - name: Install | |
| run: pnpm install --frozen-lockfile --ignore-scripts | |
| - name: Build subcall lib | |
| run: pnpm --filter @oasisprotocol/rose-app-subcall build | |
| - name: Build ui lib | |
| run: pnpm --filter @oasisprotocol/rose-app-ui build | |
| - name: Build stake lib | |
| run: pnpm --filter @oasisprotocol/rose-app-stake build | |
| - name: Build move lib | |
| run: pnpm --filter @oasisprotocol/rose-app-move build | |
| - name: Build discover lib | |
| run: pnpm --filter @oasisprotocol/rose-app-discover build | |
| - name: Build app | |
| run: pnpm build | |
| - name: Upload frontend build artifacts | |
| # Upload build artifacts on push event. | |
| if: github.event_name == 'push' | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: oasisprotocol-rose-app-${{ steps.vars.outputs.SHORT_SHA }} | |
| path: home/dist |