⬆️ (deps): Update dependency task-master-ai to v0.16.1 #180
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: 🏗️ Build Extension | |
on: | |
push: | |
branches: [main] | |
paths: | |
- .github/workflows/push,pull_request.build.yaml | |
- src/ | |
- package.json | |
- pnpm-lock.yaml | |
pull_request: | |
paths: | |
- .github/workflows/push,pull_request.build.yaml | |
- src/ | |
- package.json | |
- pnpm-lock.yaml | |
permissions: {} | |
jobs: | |
build: | |
name: 🏗️ Build ArgoCD extension | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: ⬇️ Checkout repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: 🏗️ Setup Node.js | |
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 | |
with: | |
node-version: 20 | |
- name: 📦 Install PNPM | |
run: npm install -g pnpm | |
- name: 📦 Install dependencies | |
run: pnpm install | |
- name: 🔨 Build the extension | |
run: pnpm build:prod | |
- name: 📂 Upload build artifacts | |
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 | |
with: | |
name: extension-build | |
path: dist/ | |
if-no-files-found: error | |
retention-days: 7 |