From bf65c7b848974ee97de464b919659be95d5ea83a Mon Sep 17 00:00:00 2001 From: Harel M Date: Mon, 4 Dec 2023 17:01:19 +0200 Subject: [PATCH 1/5] Update test-all.yml --- .github/workflows/test-all.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-all.yml b/.github/workflows/test-all.yml index 2d507c252..befb6d089 100644 --- a/.github/workflows/test-all.yml +++ b/.github/workflows/test-all.yml @@ -19,7 +19,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v3 with: - node-version: lts/* + node-version-file: '.nvmrc' - run: npm ci - run: npm run lint if: success() || failure() @@ -51,7 +51,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v3 with: - node-version: lts/* + node-version-file: '.nvmrc' - run: npm ci - run: npm run generate-style-spec - run: npm run generate-typings From 9d8a3a774cedf50786d966374819e92046ea9e48 Mon Sep 17 00:00:00 2001 From: Harel M Date: Mon, 4 Dec 2023 17:01:41 +0200 Subject: [PATCH 2/5] Update build-docs.yml --- .github/workflows/build-docs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index 4616c89e5..48f12202f 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v3 with: - node-version: 18 + node-version-file: '.nvmrc' - name: Install NPM packages run: npm ci @@ -26,4 +26,4 @@ jobs: run: | cd ./docs npm ci - npm run build \ No newline at end of file + npm run build From 53b974197f2b14a90e473c3999db56040012d395 Mon Sep 17 00:00:00 2001 From: Harel M Date: Mon, 4 Dec 2023 17:02:17 +0200 Subject: [PATCH 3/5] Update publish-style-spec.yml --- .github/workflows/publish-style-spec.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish-style-spec.yml b/.github/workflows/publish-style-spec.yml index f708a6356..c35fb8e19 100644 --- a/.github/workflows/publish-style-spec.yml +++ b/.github/workflows/publish-style-spec.yml @@ -12,11 +12,10 @@ jobs: with: fetch-depth: 0 - - name: Use Node.js 18 x64 + - name: Use Node.js from nvmrc uses: actions/setup-node@v3.6.0 with: - node-version: 18 - architecture: x64 + node-version-file: '.nvmrc' registry-url: 'https://registry.npmjs.org' - name: Get version From 87e9ed3f6854c55d987a896d0d316035dcac5b98 Mon Sep 17 00:00:00 2001 From: Harel M Date: Mon, 4 Dec 2023 17:02:36 +0200 Subject: [PATCH 4/5] Update deploy-docs.yml --- .github/workflows/deploy-docs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 2971aea03..ac7380063 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v3 with: - node-version: 18 + node-version-file: '.nvmrc' - name: Install NPM packages run: npm ci @@ -32,4 +32,4 @@ jobs: uses: JamesIves/github-pages-deploy-action@v4 with: branch: gh-pages - folder: docs/dist/public \ No newline at end of file + folder: docs/dist/public From df7eb7373de882514abac57d2f9a456852193de9 Mon Sep 17 00:00:00 2001 From: Harel M Date: Mon, 4 Dec 2023 17:08:14 +0200 Subject: [PATCH 5/5] Update test-all.yml --- .github/workflows/test-all.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-all.yml b/.github/workflows/test-all.yml index befb6d089..2695ecab0 100644 --- a/.github/workflows/test-all.yml +++ b/.github/workflows/test-all.yml @@ -32,7 +32,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v3 with: - node-version: lts/* + node-version-file: '.nvmrc' - run: npm ci - run: npm run jest-ci -- --coverage --coverageDirectory=coverage-unit --coverageReporters json --selectProjects unit - run: npm run jest-ci -- --coverage --coverageDirectory=coverage-integration --coverageReporters json --selectProjects integration