From 17afc6bf28d6e4cc03e11f300c264b6e7b4ce35d Mon Sep 17 00:00:00 2001 From: "jakub.jozwiak" Date: Mon, 12 Apr 2021 12:56:13 +0200 Subject: [PATCH] fix: remove registry-url from setup-node ci jobs --- .github/workflows/chromatic.yml | 1 - .github/workflows/continous_delivery.yml | 3 +-- .github/workflows/continous_integration.yml | 3 +-- .github/workflows/docs-check.yml | 5 ++--- package.json | 5 +---- 5 files changed, 5 insertions(+), 12 deletions(-) diff --git a/.github/workflows/chromatic.yml b/.github/workflows/chromatic.yml index 042c80e..3a5e30e 100644 --- a/.github/workflows/chromatic.yml +++ b/.github/workflows/chromatic.yml @@ -19,7 +19,6 @@ jobs: uses: actions/setup-node@v2.1.5 with: node-version: ${{ matrix.node-version }} - registry-url: https://registry.npmjs.org/ # Needed for auth - name: 'Use cached node_modules' id: cache-modules uses: actions/cache@v2.1.4 diff --git a/.github/workflows/continous_delivery.yml b/.github/workflows/continous_delivery.yml index ded3f3c..ab5401d 100644 --- a/.github/workflows/continous_delivery.yml +++ b/.github/workflows/continous_delivery.yml @@ -24,7 +24,6 @@ jobs: uses: actions/setup-node@v2.1.5 with: node-version: ${{ matrix.node-version }} - registry-url: https://registry.npmjs.org/ # Needed for auth - name: 'Use cached node_modules' id: cache-modules uses: actions/cache@v2.1.4 @@ -45,8 +44,8 @@ jobs: ${{ runner.os }}-yarn- - name: 'Install dependency' run: yarn install --frozen-lockfile - # End of yarn setup + - name: 'Semantic release' env: GH_TOKEN: ${{ secrets.SEMANTIC_RELEASE_PR }} diff --git a/.github/workflows/continous_integration.yml b/.github/workflows/continous_integration.yml index 1910cc6..44dccb4 100644 --- a/.github/workflows/continous_integration.yml +++ b/.github/workflows/continous_integration.yml @@ -16,7 +16,6 @@ jobs: uses: actions/setup-node@v2.1.5 with: node-version: ${{ matrix.node-version }} - registry-url: https://registry.npmjs.org/ # Needed for auth - name: 'Use cached node_modules' id: cache-modules uses: actions/cache@v2.1.4 @@ -37,8 +36,8 @@ jobs: ${{ runner.os }}-yarn- - name: 'Install dependency' run: yarn install --frozen-lockfile - # End of yarn setup + - name: 'Audit dependencies' run: /bin/sh -c 'yarn audit --level high; [[ $? -ge 8 ]] && exit 1 || exit 0' - name: 'Types check' diff --git a/.github/workflows/docs-check.yml b/.github/workflows/docs-check.yml index 4c887c7..6c99975 100644 --- a/.github/workflows/docs-check.yml +++ b/.github/workflows/docs-check.yml @@ -16,12 +16,11 @@ jobs: - name: 'Git checkout' uses: actions/checkout@v2 - # Beginning of yarn setup, keep in sync between all workflows, see continous-integration.yml + # Beginning of yarn setup, keep in sync between all workflows - name: Use node.js ${{ matrix.node-version }} uses: actions/setup-node@v2.1.5 with: node-version: ${{ matrix.node-version }} - registry-url: https://registry.npmjs.org/ # Needed for auth - name: 'Use cached node_modules' id: cache-modules uses: actions/cache@v2.1.4 @@ -42,7 +41,7 @@ jobs: ${{ runner.os }}-yarn- - name: 'Install dependency' run: yarn install --frozen-lockfile - # End of yarn setup + # End of yarn setup - name: 'Build docs' run: yarn build diff --git a/package.json b/package.json index 3fa8f14..696f002 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "homepage": "https://intentbase-ui-auth.netlify.app", "repository": { "type": "git", - "url": "https://github.com/dotintent/intentbase-ui-auth.git" + "url": "https://github.com/dotintent/intentbase-ui-auth" }, "license": "MIT", "author": { @@ -99,8 +99,5 @@ "engines": { "node": ">=12", "yarn": ">=1.22" - }, - "publishConfig": { - "access": "public" } }