Skip to content

feat: new icons for eas files #6266

feat: new icons for eas files

feat: new icons for eas files #6266

Workflow file for this run

name: šŸ› ļø Build + Test
on:
push:
paths:
- 'build/**'
- 'icons/*.svg'
- 'patches/**'
- 'src/**'
- '.bun-version'
- 'bunfig.toml'
- 'package.json'
- 'bun.lock'
- 'sheriff.config.ts'
- '!*.md'
pull_request:
paths:
- 'build/**'
- 'icons/*.svg'
- 'patches/**'
- 'src/**'
- '.bun-version'
- 'bunfig.toml'
- 'package.json'
- 'bun.lock'
- '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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: šŸ”§ Setup Bun
uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2
with:
bun-version-file: ".bun-version"
- name: šŸ“¦ Install dependencies
run: bun install --frozen-lockfile
- name: šŸš€ Test + Build
id: build
run: |
bun test
bun run vscode:prepublish
⚔