Skip to content

chore(deps-dev): bump ts-jest from 29.1.3 to 29.2.2 (#222) #205

chore(deps-dev): bump ts-jest from 29.1.3 to 29.2.2 (#222)

chore(deps-dev): bump ts-jest from 29.1.3 to 29.2.2 (#222) #205

Workflow file for this run

name: release
on:
push:
branches: [ "master", "develop" ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 20
uses: actions/setup-node@v3
with:
node-version: 20
cache: 'npm'
- name: Installing dependencies
run: npm ci
- name: Running linting and tests
run: npm run test
release:
runs-on: ubuntu-latest
permissions:
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
needs: test
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token
- name: Use Node.js 20
uses: actions/setup-node@v3
with:
node-version: 20
cache: 'npm'
- name: Installing dependencies
run: npm ci
- name: Building package
run: npm run build
- name: Releasing
env:
GITHUB_TOKEN: ${{ secrets.SEMANTIC_RELEASE_GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release