Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
k1tikurisu committed Feb 9, 2024
1 parent c305c57 commit 945e1ef
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-react-and-next

name: CI

on:
push:
workflow_dispatch:

jobs:
CI:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4

- name: Use Node.js 20.11.0
uses: actions/setup-node@v4
with:
node-version: '20.11.0'

- name: Install Packages
run: |
corepack enable
yarn install
- name: Check Lint and Format
run: |
yarn ci

0 comments on commit 945e1ef

Please sign in to comment.