Skip to content

Merge pull request #84 from jy95/dependabot/npm_and_yarn/typescript-5… #82

Merge pull request #84 from jy95/dependabot/npm_and_yarn/typescript-5…

Merge pull request #84 from jy95/dependabot/npm_and_yarn/typescript-5… #82

Workflow file for this run

name: Release
on:
repository_dispatch:
types: [generate-release]
workflow_dispatch:
push:
branches:
- main
- alpha
- beta
permissions:
contents: read # for checkout
jobs:
release:
name: Release
permissions:
actions: write
contents: write # to be able to publish a GitHub release
issues: write # to be able to comment on released issues
pull-requests: write # to be able to comment on released pull requests
id-token: write # to enable use of OIDC for npm provenance
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js ✨
uses: actions/[email protected]
with:
node-version: "lts/*"
- name: Install dependencies 💻
run: npm ci
- name: Build 🤖
run: npm run build
- name: Test 🧪
run: npm run test
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release