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 }