From ac343280749f9457a91d3ac20a34b0756ea3c8f4 Mon Sep 17 00:00:00 2001 From: TheCatLady <52870424+TheCatLady@users.noreply.github.com> Date: Fri, 19 Aug 2022 01:38:11 -0400 Subject: [PATCH] ci: don't lint/test in snap publish workflow (#2948) [skip ci] --- .github/workflows/snap.yaml | 21 ++------------------- 1 file changed, 2 insertions(+), 19 deletions(-) diff --git a/.github/workflows/snap.yaml b/.github/workflows/snap.yaml index 9d0771c32..65befdf53 100644 --- a/.github/workflows/snap.yaml +++ b/.github/workflows/snap.yaml @@ -12,30 +12,13 @@ jobs: if: "!contains(github.event.head_commit.message, '[skip ci]')" steps: - name: Cancel Previous Runs - uses: styfle/cancel-workflow-action@0.9.1 + uses: styfle/cancel-workflow-action@0.10.0 with: access_token: ${{ secrets.GITHUB_TOKEN }} - test: - name: Lint & Test Build - needs: jobs - runs-on: ubuntu-20.04 - container: node:16.16-alpine - steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Install dependencies - env: - HUSKY_SKIP_INSTALL: 1 - run: yarn - - name: Lint - run: yarn lint - - name: Build - run: yarn build - build-snap: name: Build Snap Package (${{ matrix.architecture }}) - needs: test + needs: jobs runs-on: ubuntu-20.04 strategy: fail-fast: false