From 7c8d370bb647477fca284be4cd1c71f4cee9ffb3 Mon Sep 17 00:00:00 2001 From: Yusuke Wada Date: Wed, 13 Dec 2023 12:19:29 +0900 Subject: [PATCH] fixed Github Actions for `hello` --- .github/workflows/ci-hello.yml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci-hello.yml b/.github/workflows/ci-hello.yml index 8abbe36f3..7ba22d55a 100644 --- a/.github/workflows/ci-hello.yml +++ b/.github/workflows/ci-hello.yml @@ -12,14 +12,11 @@ on: jobs: ci: runs-on: ubuntu-latest - defaults: - run: - working-directory: ./packages/hello steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: 18.x - - run: yarn install --frozen-lockfile - - run: yarn build - - run: yarn test + - run: yarn workspace @hono/hello install --immutable + - run: yarn workspace @hono/hello build + - run: yarn workspace @hono/hello test