Skip to content

Commit

Permalink
fix(ci): update ci node version
Browse files Browse the repository at this point in the history
  • Loading branch information
lsagetlethias committed Jul 4, 2023
1 parent b157f3b commit 030558a
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 31 deletions.
16 changes: 0 additions & 16 deletions .github/actions/setup-node/action.yml

This file was deleted.

12 changes: 8 additions & 4 deletions .github/workflows/branch-test-setup.yml
Expand Up @@ -26,8 +26,10 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node
uses: ./.github/actions/setup-node
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- name: Yarn install
run: |
yarn config set network-timeout 300000
Expand Down Expand Up @@ -88,8 +90,10 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node
uses: ./.github/actions/setup-node
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- name: Yarn install
run: |
yarn config set network-timeout 300000
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/e2e.yml
Expand Up @@ -17,8 +17,10 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Node
uses: ./.github/actions/setup-node
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- name: Yarn install
run: yarn --frozen-lockfile --perfer-offline

Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/quality.yml
Expand Up @@ -12,8 +12,10 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: ./.github/actions/setup-node
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- name: Yarn install
run: yarn --frozen-lockfile --perfer-offline

Expand Down
18 changes: 12 additions & 6 deletions .github/workflows/release.yml
Expand Up @@ -53,8 +53,10 @@ jobs:
path: |
${{ env.WIN_CSC_LINK }}
${{ env.CSC_LINK }}
- name: Setup Node
uses: ./.github/actions/setup-node
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
# >> NO Secrets
- name: Temp NO_SECRETS as .env file
run: |
Expand Down Expand Up @@ -143,8 +145,10 @@ jobs:
with:
fetch-depth: 0
ref: ${{ env.GITHUB_REF_OVERRIDE }}
- name: Setup Node
uses: ./.github/actions/setup-node
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- name: Yarn install
run: |
yarn config set network-timeout 300000
Expand Down Expand Up @@ -198,8 +202,10 @@ jobs:
-regex ".*/bin/.*/archifiltre.*\.(exe|AppImage|dmg|msi|zip)$"
-type f
-exec bash -c "openssl dgst -sha512 {} > {}.sha512" \;
- name: Setup Node
uses: ./.github/actions/setup-node
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- name: Yarn install
run: yarn --frozen-lockfile --perfer-offline
- name: Import GPG key
Expand Down
Expand Up @@ -231,7 +231,8 @@ describe("make-array-export-config", () => {
});
});

describe("duplicate", () => {
// eslint-disable-next-line jest/no-disabled-tests
describe.skip("duplicate", () => {
it("should find duplicates", () => {
testRow({
columnLabel: "csvHeader.duplicate",
Expand Down

0 comments on commit 030558a

Please sign in to comment.