-
Notifications
You must be signed in to change notification settings - Fork 352
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
15 additions
and
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -166,10 +166,10 @@ jobs: | |
uses: arduino/setup-protoc@v3 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
- uses: actions/setup-node@v3 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
node-version: 18 | ||
node-version: 20 | ||
- name: Install Rust | ||
uses: actions-rs/[email protected] | ||
with: | ||
|
@@ -242,10 +242,10 @@ jobs: | |
uses: arduino/setup-protoc@v3 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
- uses: actions/setup-node@v3 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
node-version: 18 | ||
node-version: 20 | ||
cache: 'npm' | ||
cache-dependency-path: gui/package-lock.json | ||
- name: Build app | ||
|
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 |
---|---|---|
|
@@ -26,34 +26,27 @@ jobs: | |
default: true | ||
profile: minimal | ||
|
||
- name: Read volta info | ||
id: volta | ||
uses: zoexx/[email protected] | ||
with: | ||
file_path: 'gui/package.json' | ||
prop_path: 'volta' | ||
|
||
- name: Setup node | ||
uses: actions/setup-node@v3 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ steps.volta.outputs.node }} | ||
node-version-file: gui/package.json | ||
cache: 'npm' | ||
cache-dependency-path: gui/package-lock.json | ||
|
||
- name: Update NPM | ||
run: npm i -g npm@${{ steps.volta.outputs.npm }} | ||
|
||
- name: Install dependencies | ||
working-directory: gui | ||
shell: bash | ||
run: npm ci | ||
|
||
- name: Check formatting | ||
if: matrix.os == 'ubuntu-latest' | ||
working-directory: gui | ||
shell: bash | ||
run: npm run lint | ||
|
||
- name: Build | ||
working-directory: gui | ||
shell: bash | ||
run: npm run build | ||
|
||
- name: Run headless test Linux | ||
|
@@ -64,8 +57,10 @@ jobs: | |
- name: Run headless test Windows | ||
if: runner.os != 'Linux' | ||
working-directory: gui | ||
shell: bash | ||
run: npm test | ||
|
||
- name: Run Playwright tests | ||
working-directory: gui | ||
shell: bash | ||
run: npm run e2e:no-build |
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 |
---|---|---|
|
@@ -16,25 +16,16 @@ jobs: | |
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Read volta info | ||
id: volta | ||
uses: zoexx/[email protected] | ||
with: | ||
file_path: 'gui/package.json' | ||
prop_path: 'volta' | ||
|
||
- name: Setup node | ||
uses: actions/setup-node@v3 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ steps.volta.outputs.node }} | ||
node-version-file: gui/package.json | ||
cache: 'npm' | ||
cache-dependency-path: gui/package-lock.json | ||
|
||
- name: Update NPM | ||
run: npm i -g npm@${{ steps.volta.outputs.npm }} | ||
|
||
- name: Install JS dependencies | ||
working-directory: gui | ||
shell: bash | ||
run: npm ci | ||
|
||
- name: Install Rust | ||
|
@@ -44,4 +35,5 @@ jobs: | |
default: true | ||
|
||
- name: Verify translations | ||
shell: bash | ||
run: scripts/localization verify |