Skip to content

ci: fixing ci with wrong output format #22

ci: fixing ci with wrong output format

ci: fixing ci with wrong output format #22

name: Continuous Integration on release branches
on:
push:
branches:
- main
env:
HUSKY: 0
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 8
run_install: false
- name: Install Dependencies
run: pnpm i
- name: Run tests
run: pnpm test
- name: Build project
run: pnpm build
- name: Release new package version
run: pnpm semantic-release
env:
NPM_TOKEN: ${{secrets.NPM_TOKEN}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}