Skip to content

Commit

Permalink
Merge pull request #70 from kyometori/chore/workflow-update
Browse files Browse the repository at this point in the history
chore: update action version in workflow
  • Loading branch information
Zollo757347 authored Feb 15, 2025
2 parents fd47cf9 + b345165 commit c744b77
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,24 @@ name: Build HiZollo
on:
push:
pull_request:
types: [opened, reopened, review_requested]
types: [opened, reopened, review_requested, workflow_dispatch]

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.12.1]
node-version: [22.14.0]

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: Cache Node Modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: node-modules-${{ runner.os }}-${{ matrix.node-version }}-${{ hashFiles('package-lock.json') }}
Expand Down

0 comments on commit c744b77

Please sign in to comment.