Skip to content

fix: Merge pull request #6 from EverseDevelopment/hotfix/ScopeEscalation #23

fix: Merge pull request #6 from EverseDevelopment/hotfix/ScopeEscalation

fix: Merge pull request #6 from EverseDevelopment/hotfix/ScopeEscalation #23

Workflow file for this run

name: CI & Release
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
permissions:
contents: write
issues: write
pull-requests: write
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 24.10.0
cache: npm
- name: Install dependencies
run: npm ci
- name: Build & Pack
run: npm run pack
- name: Release
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}