Skip to content

DEV: Update dependency jest to v29.7.0 #74

DEV: Update dependency jest to v29.7.0

DEV: Update dependency jest to v29.7.0 #74

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 18.x
uses: actions/setup-node@v4
with:
node-version: 18.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}}