Skip to content

BREAKING CHANGE: Release OWASP 2023 (#61) #40

BREAKING CHANGE: Release OWASP 2023 (#61)

BREAKING CHANGE: Release OWASP 2023 (#61) #40

Workflow file for this run

name: Release npm package
on:
push:
branches:
- main
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- run: npm test
- run: npm run type-check
- run: npm run build
- run: npx semantic-release --branches main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}