Skip to content

Add secrets

Add secrets #6

Workflow file for this run

name: Check format
on:
push:
branches:
- feature/*
- release/*
jobs:
check-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
cache: pnpm
- run: pnpm install
- name: Run prettier
run: pnpm check-format
env:
CI: true