From 84fd463cc7152f0eec57707695e21068af4bc040 Mon Sep 17 00:00:00 2001 From: isamu Date: Mon, 17 Jun 2024 10:36:18 +0900 Subject: [PATCH] fix type --- .github/workflows/build.yml | 27 +++++++++++++++++++++++++++ src/views/Home.vue | 6 +++--- src/views/nodes.ts | 4 ++-- 3 files changed, 32 insertions(+), 5 deletions(-) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..acb04f8 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,27 @@ +name: Update Build + +on: + push: + branches: + - main + +permissions: + contents: write + +jobs: + build: + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [20.x] + steps: + - uses: actions/checkout@v4 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node-version }} + cache: 'npm' + - run: yarn install + - run: yarn run build + - run: yarn run eslint diff --git a/src/views/Home.vue b/src/views/Home.vue index 1628238..f24b20b 100644 --- a/src/views/Home.vue +++ b/src/views/Home.vue @@ -10,7 +10,7 @@