Skip to content

chore(deps-dev): bump rimraf from 6.1.2 to 6.1.3 #128

chore(deps-dev): bump rimraf from 6.1.2 to 6.1.3

chore(deps-dev): bump rimraf from 6.1.2 to 6.1.3 #128

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- run: npm ci
- run: npm run lint
continue-on-error: true
format:
name: Check Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- run: npm ci
- run: npm run format:check
continue-on-error: true
build:
name: Build & Package
runs-on: ubuntu-latest
needs: [lint, format]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- run: npm ci
- run: npm run build
- run: npm run package:dev
- name: Upload dev extension
uses: actions/upload-artifact@v4
with:
name: opencode-ado-dev
path: opencode-ado-extension-*.vsix
retention-days: 5