Skip to content

chore(deps): update github actions workflows #6634

chore(deps): update github actions workflows

chore(deps): update github actions workflows #6634

Workflow file for this run

name: 🛠️ Build + Test
on:
push:
paths:
- 'build/**'
- 'icons/*.svg'
- 'patches/**'
- 'src/**'
- 'package.json'
- 'package-lock.json'
- 'sheriff.config.ts'
- '!*.md'
pull_request:
paths:
- 'build/**'
- 'icons/*.svg'
- 'patches/**'
- 'src/**'
- 'package.json'
- 'package-lock.json'
- 'sheriff.config.ts'
- '!*.md'
permissions:
contents: read
pull-requests: write
jobs:
build-and-test:
name: Build & Test Extension
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: 🔧 Setup Node.js
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version-file: '.node-version'
cache: 'npm'
- name: 📦 Install dependencies
run: npm ci
- name: 🚀 Test + Build
id: build
run: |
npm test
npm run vscode:prepublish