From f64639074fd088b6a8d07a6eb3b04a0a6f267bda Mon Sep 17 00:00:00 2001 From: johannlai Date: Wed, 21 Jun 2023 19:57:46 +0800 Subject: [PATCH] :green_heart: add pr check --- .github/workflows/mr.yml | 55 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 .github/workflows/mr.yml diff --git a/.github/workflows/mr.yml b/.github/workflows/mr.yml new file mode 100644 index 0000000..c17cc8b --- /dev/null +++ b/.github/workflows/mr.yml @@ -0,0 +1,55 @@ +# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created +# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages + +name: MR CI + +on: + pull_request: + branches: [main] + +jobs: + check: + name: Check + runs-on: ubuntu-latest + timeout-minutes: 10 + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version-file: ".nvmrc" + + - name: Setup pnpm + uses: pnpm/action-setup@v2 + with: + version: 8.6.0 + run_install: false + + - name: Get pnpm store directory + id: pnpm-cache + shell: bash + run: | + echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT + + - uses: actions/cache@v3 + name: Setup pnpm cache + with: + path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} + key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} + restore-keys: | + ${{ runner.os }}-pnpm-store- + - name: Install dependencies + run: pnpm install + + - name: Test + run: pnpm run coverage + + - name: Upload coverage reports to Codecov + uses: codecov/codecov-action@v3 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + + - name: Build + run: pnpm run build