Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/cypress-Run-tests-with-npm-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ jobs:
steps:
# 01. Checkout the repository.
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

# 02. Install a specific version of Node using.
- name: Use Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v6
with:
node-version: 16
node-version: ${{ vars.NODE_VERSION }}

# 03. Install dependencies and verify Cypress
- name: Install dependencies and verify Cypress
Expand Down Expand Up @@ -79,13 +79,13 @@ jobs:
steps:
# 01. Checkout the repository.
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

# 02. Install a specific version of Node.
- name: Use Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v6
with:
node-version: 16
node-version: ${{ vars.NODE_VERSION }}

# 03a. Decide whether to send data to Cypress Dashboard, or not, for workflow_dispatch and schedule.
- name: Decide if we send data to Cypress 2
Expand Down
15 changes: 8 additions & 7 deletions .github/workflows/deploy-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ jobs:
matrix:
branch: ${{ fromJson(needs.prepare.outputs.branches) }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v6
with:
node-version: 20
node-version: ${{ vars.NODE_VERSION }}

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
Expand Down Expand Up @@ -121,7 +121,8 @@ jobs:
fail-fast: false
matrix:
branch: ${{ fromJson(needs.prepare.outputs.branches) }}
editor: ["ckeditor4", "ckeditor5", "froala", "generic", "tinymce5", "tinymce6", "tinymce7", "tinymce8", "viewer"]
editor:
["ckeditor4", "ckeditor5", "froala", "generic", "tinymce5", "tinymce6", "tinymce7", "tinymce8", "viewer"]
framework: ["html", "vue"]
exclude:
- framework: vue
Expand All @@ -141,10 +142,10 @@ jobs:
- framework: vue
editor: ckeditor4
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v6
with:
node-version: 20
node-version: ${{ vars.NODE_VERSION }}

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/jsdoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

# 01. install a specific version of Node using
# https://github.com/actions/setup-node
- name: Use Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v6
with:
node-version: 20
node-version: ${{ vars.NODE_VERSION }}

# 02. Install html-integrations dependencies
- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: 20
node-version: ${{ vars.NODE_VERSION }}

- name: Checkout
uses: actions/checkout@v4
Expand Down
Loading