From bb0f17646f454d149eef9e4ed1608c1178d46cb6 Mon Sep 17 00:00:00 2001 From: Kohei Watanabe Date: Thu, 11 Jun 2020 22:41:45 +0900 Subject: [PATCH] create build action and requiredStatusChecks --- .github/workflows/build.yml | 16 ++++++++++++++++ renovate.json | 3 +-- 2 files changed, 17 insertions(+), 2 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..14c36b6 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,16 @@ +name: build +on: push +jobs: + main: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - id: yarn_cache + run: echo "::set-output name=dir::$(yarn cache dir)" + - uses: actions/cache@v1 + with: + path: ${{ steps.yarn_cache.outputs.dir }} + key: yarn-${{ hashFiles('**/yarn.lock') }} + restore-keys: yarn- + - run: yarn + - run: yarn build diff --git a/renovate.json b/renovate.json index c9ecfa7..43ee62f 100644 --- a/renovate.json +++ b/renovate.json @@ -1,6 +1,5 @@ { "extends": ["config:base"], "rangeStrategy": "update-lockfile", - "automerge": true, - "requiredStatusChecks": null + "automerge": true }