Skip to content

Commit

Permalink
feat: add ci to PR (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
rei1024 authored Oct 3, 2024
1 parent 01b3058 commit 94fbcff
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# https://docs.github.com/ja/pages/getting-started-with-github-pages/using-custom-workflows-with-github-pages
name: Check

on:
pull_request:

jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
- run: npm ci
- run: npm run build
2 changes: 1 addition & 1 deletion src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ canvas {
left: 4px;
width: 24px;
height: 24px;
color: white;
color: #e5e7eb;
cursor: pointer;
}

Expand Down

0 comments on commit 94fbcff

Please sign in to comment.