diff --git a/.github/workflows/desktop-e2e.yml b/.github/workflows/desktop-e2e.yml index 1aeafb9998bc..e22e59e8a873 100644 --- a/.github/workflows/desktop-e2e.yml +++ b/.github/workflows/desktop-e2e.yml @@ -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/toolchain@v1.0.6 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 diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml index 4aefa557e28c..cb14e4397d28 100644 --- a/.github/workflows/frontend.yml +++ b/.github/workflows/frontend.yml @@ -26,34 +26,27 @@ jobs: default: true profile: minimal - - name: Read volta info - id: volta - uses: zoexx/github-action-json-file-properties@1.0.6 - 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 diff --git a/.github/workflows/translations.yml b/.github/workflows/translations.yml index ccb81de9831b..ec6a494faecd 100644 --- a/.github/workflows/translations.yml +++ b/.github/workflows/translations.yml @@ -16,25 +16,16 @@ jobs: - name: Checkout repository uses: actions/checkout@v2 - - name: Read volta info - id: volta - uses: zoexx/github-action-json-file-properties@1.0.6 - 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