enable auto-safe by default #428
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: | |
push: | |
branches: | |
- "**" | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build on ubuntu-24.04 🏗 🧪 | |
runs-on: ubuntu-24.04 | |
steps: | |
- | |
name: Checkout project contents 📡 | |
uses: actions/checkout@v4 | |
- | |
name: install npm | |
run: npm install | |
- | |
name: install esbuild | |
run: npm i --global esbuild | |
- | |
name: bundle | |
run: npm run bundle | |
- | |
name: compile | |
run: npm run compile | |
deploy: | |
name: Deploy Extension 🥧 | |
needs: build | |
if: github.ref == 'refs/heads/master' | |
uses: ./.github/workflows/Release.yml | |
secrets: inherit |