From 501a3329f0a2e416a136978af2b13e55f98755fc Mon Sep 17 00:00:00 2001 From: "fryorcraken.eth" Date: Fri, 19 Aug 2022 23:32:43 +1000 Subject: [PATCH] ci: remove trivial descriptions --- .github/workflows/ci.yml | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f0c6e0e212..64eb988f6d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -102,16 +102,11 @@ jobs: if: github.event_name == 'push' && github.ref == 'refs/heads/master' needs: [check, build, proto, browser, node] steps: - - name: Checkout code - uses: actions/checkout@v2.3.3 - - - name: Install NodeJS - uses: actions/setup-node@v3 + - uses: actions/checkout@v2.3.3 + - uses: actions/setup-node@v3 with: node-version: ${{ env.NODE_JS }} - - - name: install using npm ci - uses: bahmutov/npm-install@v1 + - uses: bahmutov/npm-install@v1 - name: Append git hash to version shell: bash @@ -124,5 +119,4 @@ jobs: - name: Authenticate with registry run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ./.npmrc - - name: publish - run: npm publish --tag next --access public + - run: npm publish --tag next --access public