From 76b045e2643e66f782b81acaf8a4274d37a4c1ea Mon Sep 17 00:00:00 2001 From: moreal Date: Tue, 14 May 2024 09:00:54 +0900 Subject: [PATCH] ci: check build --- .github/workflows/build.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/build.yaml diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 0000000..8ded435 --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,18 @@ +name: build + +on: + push: + pull_request: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: checkout + uses: actions/checkout@v4 + with: + submodules: recursive + - run: corepack enable + - run: yarn install --immutable + - run: yarn codegen + - run: yarn build