From b0f8e929adcbbb3fd1843d5514e94dc8dceb1003 Mon Sep 17 00:00:00 2001 From: Gao Sun Date: Sat, 19 Jun 2021 23:39:28 +0800 Subject: [PATCH] Create main.yml --- packages/core/.github/workflows/main.yml | 36 ++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 packages/core/.github/workflows/main.yml diff --git a/packages/core/.github/workflows/main.yml b/packages/core/.github/workflows/main.yml new file mode 100644 index 000000000..8b460f54c --- /dev/null +++ b/packages/core/.github/workflows/main.yml @@ -0,0 +1,36 @@ +name: CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + main: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + # https://github.com/actions/cache/blob/main/examples.md#node---yarn + - name: Get yarn cache directory path + id: yarn-cache-dir-path + run: echo "::set-output name=dir::$(yarn cache dir)" + + - uses: actions/cache@v2 + id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) + with: + path: ${{ steps.yarn-cache-dir-path.outputs.dir }} + key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} + restore-keys: | + ${{ runner.os }}-yarn- + + - name: Install packages + run: yarn + + - name: Lint + run: yarn lint + + - name: Build + run: yarn build