Skip to content

Create CI/CD Pipeline for VS Code Extension Project #48

Create CI/CD Pipeline for VS Code Extension Project

Create CI/CD Pipeline for VS Code Extension Project #48

Workflow file for this run

name: CI
on:
push:
branches: ['**']
pull_request:
branches: [main]
jobs:
setup:
runs-on: ubuntu-latest
outputs:
package-lock-hash: ${{ runner.os }}-repo-${{ steps.hash.outputs.hash }}
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Install dependencies
run: npm ci
- name: Calculate package-lock.json hash
id: hash
run: echo "hash=$(sha256sum package-lock.json | awk '{ print $1 }')" >> "$GITHUB_OUTPUT"
- name: Cache repository
uses: actions/cache@v4
with:
path: .
key: ${{ runner.os }}-repo-${{ steps.hash.outputs.hash }}
build:
runs-on: ubuntu-latest
needs: setup
steps:
- name: Restore repository cache
uses: actions/cache@v4
with:
path: .
key: ${{ needs.setup.outputs.package-lock-hash }}
fail-on-cache-miss: true
- name: Compile
run: npm run compile
test:
runs-on: ubuntu-latest
needs: setup
steps:
- name: Restore repository cache
uses: actions/cache@v4
with:
path: .
key: ${{ needs.setup.outputs.package-lock-hash }}
fail-on-cache-miss: true
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y libasound2 libgbm1 libgtk-3-0 libnss3 xvfb
- name: Run tests
run: xvfb-run -a npm run test
- name: Upload coverage
uses: actions/upload-artifact@v4
with:
name: coverage
path: coverage/
retention-days: 1
cleanup:
runs-on: ubuntu-latest
needs: [setup, build, test]
if: always()
steps:
- name: Cleanup
run: npm cache clean --force
- name: Delete specific cache
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPO: ${{ github.repository }}
CACHE_KEY: ${{ needs.setup.outputs.package-lock-hash }}
run: |
cache_id=$(curl -s -H "Authorization: token $GH_TOKEN" \
-H "Accept: application/vnd.github.v3+json" \
"https://api.github.com/repos/$REPO/actions/caches" | \
jq -r --arg CACHE_KEY "$CACHE_KEY" '.actions_caches[] | select(.key == $CACHE_KEY) | .id')
if [ -n "$cache_id" ]; then
curl -X DELETE -s -H "Authorization: token $GH_TOKEN" \
-H "Accept: application/vnd.github.v3+json" \
"https://api.github.com/repos/$REPO/actions/caches/$cache_id"
else
echo "No cache found with key $CACHE_KEY"
fi