chore(deps-dev): bump the all group with 2 updates #5
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: | |
workflow_dispatch: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
concurrency: | |
group: "ci-${{ github.ref_name }}-${{ github.event_name }}-${{ github.event.number || (github.event.pull_request.head.sha || github.sha) }}" | |
cancel-in-progress: true | |
env: | |
FLOX_DISABLE_METRICS: "true" | |
jobs: | |
build: | |
name: "Build" | |
runs-on: "ubuntu-latest" | |
timeout-minutes: 30 | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v4" | |
with: | |
fetch-depth: 0 | |
- name: "Install Flox" | |
uses: "flox/install-flox-action@main" | |
- name: "Restore npm cache" | |
uses: "actions/cache@v4" | |
with: | |
path: | | |
~/.npm | |
key: "${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**/*.js', '**/*.jsx', '**/*.ts', '**/*.tsx') }}" | |
restore-keys: | | |
${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}- | |
- name: "Install" | |
uses: "flox/activate-action@main" | |
with: | |
command: "npm ci" | |
- name: "Lint" | |
uses: "flox/activate-action@main" | |
with: | |
command: "npm run lint" | |
- name: "Build" | |
uses: "flox/activate-action@main" | |
with: | |
command: "npm run compile" | |
- name: "Package" | |
uses: "flox/activate-action@main" | |
with: | |
command: "vsce package --out flox-main.vsix" | |
- name: "Upload vscode extention as artifact" | |
uses: "actions/upload-artifact@v4" | |
with: | |
name: "flox-main.vsix" | |
path: "flox-main.vsix" | |
retention-days: 14 |