From d65dd1f0e705e105fa221e8e14a02bd23a9170ea Mon Sep 17 00:00:00 2001 From: Adam Gall Date: Sat, 4 May 2024 15:53:21 -0400 Subject: [PATCH] Remove tests job from publish github script (tests run on "npm run publish" already) --- .github/workflows/publish.yml | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index fee61ce4..5e6a35b1 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -5,22 +5,9 @@ on: types: [created] jobs: - tests: - name: Tests - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 - with: - node-version-file: ".nvmrc" - - run: npm install - - run: npm run compile - - run: npm run test - publish: name: Publish runs-on: ubuntu-latest - needs: tests environment: global steps: - uses: actions/checkout@v4