Skip to content

Merge branch 'master' into production #4

Merge branch 'master' into production

Merge branch 'master' into production #4

Workflow file for this run

name: Release
on:
push:
branches:
- production
permissions:
contents: write
issues: write
pull-requests: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: yarn install --immutable
- name: Running tests
run: yarn run test
- name: Building
run: yarn run build
- name: Running audit
run: yarn audit signatures
- name: Semantic release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}