Skip to content
This repository has been archived by the owner on Sep 8, 2023. It is now read-only.

chore(deps): bump pino-pretty from 10.0.0 to 10.0.1 (#106) #32

chore(deps): bump pino-pretty from 10.0.0 to 10.0.1 (#106)

chore(deps): bump pino-pretty from 10.0.0 to 10.0.1 (#106) #32

Workflow file for this run

name: Release
on:
push:
branches:
- master
jobs:
prepare: # Do not run workflow for chore commits https://bit.ly/39qUH60
name: Prepare
runs-on: ubuntu-latest
if: "! contains(github.event.head_commit.message, '[skip ci]')"
steps:
- run: echo "${{ github.event.head_commit.message }}"
release:
needs: prepare
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: npm install
- name: Run unit tests
run: npm test
env:
CI: true
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx --no-install semantic-release