Skip to content

Commit

Permalink
Update GA workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
dlon committed May 13, 2024
1 parent ab823ac commit 767b41a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 28 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/desktop-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down
19 changes: 7 additions & 12 deletions .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
16 changes: 4 additions & 12 deletions .github/workflows/translations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -44,4 +35,5 @@ jobs:
default: true

- name: Verify translations
shell: bash
run: scripts/localization verify

0 comments on commit 767b41a

Please sign in to comment.