Skip to content

DEV: Update dependency prettier to v3.2.5 #76

DEV: Update dependency prettier to v3.2.5

DEV: Update dependency prettier to v3.2.5 #76

Workflow file for this run

name: Release CI
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: "yarn"
- run: yarn install --frozen-lockfile
- run: yarn test
- run: yarn prettier:check
- run: yarn release
env:
NPM_TOKEN: ${{secrets.NPM_TOKEN}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}