From d318ddd79803b3d555e07e8d826b644a32292f8e Mon Sep 17 00:00:00 2001 From: Ruben Date: Mon, 18 Nov 2024 16:51:51 +0100 Subject: [PATCH] uncommented publish steps --- .github/workflows/npm-publish.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 5914810d9ae..9db6ea2219f 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -9,16 +9,16 @@ on: types: [created] jobs: - # lint: - # name: "Lint" - # uses: ./.github/workflows/lint.yml + lint: + name: "Lint" + uses: ./.github/workflows/lint.yml - # test: - # name: "Test" - # uses: ./.github/workflows/test.yml + test: + name: "Test" + uses: ./.github/workflows/test.yml publish-npm: - # needs: [test, lint] + needs: [test, lint] runs-on: ubuntu-latest steps: - uses: actions/checkout@v4