Skip to content

fix: check github check event #12

fix: check github check event

fix: check github check event #12

Workflow file for this run

name: CI Workflow
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
entire_workflow:
name: CI Process
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js 20
uses: actions/setup-node@v3
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: npm ci
- name: Run build
run: npm run build
- name: Run prettier check
run: npm run format:check