Skip to content

Commit

Permalink
fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
yukikurage committed Nov 13, 2024
1 parent 38c55da commit 2f9d4b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,16 @@ on:
push:
branches: [ master ]
workflow_dispatch:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 14.x
node-version: 22.x
- name: Install NPM packages
run: npm ci
- name: Build website
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"test": "run-s test:*",
"bundle:spago": "node esbuild.js",
"bundle:tailwind": "npx tailwindcss -i ./tailwind.css -o ./public/style.css",
"bundle": "run-s bundle:spago bundle:webpack bundle:tailwind",
"bundle": "run-s bundle:*",
"watch:spago": "node esbuildWatch.js",
"watch:tailwind": "npx tailwindcss -i ./tailwind.css -o ./public/style.css -w",
"watch:live-server": "cd public && npx live-server --port=8080",
Expand Down

0 comments on commit 2f9d4b1

Please sign in to comment.