-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
14 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,11 +11,11 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout the code | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Set up Node | ||
uses: actions/setup-node@v3 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '18' | ||
node-version: '20' | ||
- name: Install the library and its dependencies | ||
run: npm install | ||
- name: Set path to a chromium browser (needed for screenshot tests) | ||
|
@@ -51,7 +51,7 @@ jobs: | |
name: Rebase (fast forward) the prod branch onto main | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- uses: emiliopedrollo/[email protected] | ||
with: | ||
target_branch: 'prod' | ||
|
@@ -69,11 +69,11 @@ jobs: | |
packages: write | ||
steps: | ||
- name: Checkout the code | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Set up Node | ||
uses: actions/setup-node@v3 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '18' | ||
node-version: '20' | ||
- name: Install the library and its dependencies | ||
run: npm install | ||
- name: Set path to a chromium browser (needed for screenshot tests) | ||
|
@@ -93,9 +93,9 @@ jobs: | |
- name: Publish the package to GitHub Packages registry | ||
run: npm publish | ||
- name: Set up Node again | ||
uses: actions/setup-node@v3 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '18' | ||
node-version: '20' | ||
registry-url: 'https://registry.npmjs.org' | ||
- name: Install the library and its dependencies | ||
run: npm install | ||
|
@@ -114,7 +114,7 @@ jobs: | |
contents: write | ||
steps: | ||
- name: Checkout the code | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: Generate the changelog | ||
run: kotlin .github/scripts/generate-github-changelog.main.kts | ||
- name: Create the release | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters