chore: update nodejs version from 18 to 22 #3142
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 workflow runs tests and lint on non-release branches pushed that alter | |
# the update-server subpackage | |
name: 'Update Server test/lint' | |
on: | |
push: | |
paths: | |
- 'update-server/**/*' | |
- 'Makefile' | |
- 'scripts/**/*.mk' | |
- 'scripts/**/*.py' | |
- '.github/workflows/update-server-lint-test.yaml' | |
- '.github/actions/python/**' | |
branches: # ignore any release-related thing (handled elsewhere) | |
- 'edge' | |
tags-ignore: | |
- '*' | |
pull_request: | |
types: [opened, reopened, synchronize, ready_for_review] | |
paths: | |
- 'update-server/**/*' | |
- 'Makefile' | |
- 'scripts/**/*.mk' | |
- 'scripts/**/*.py' | |
- '.github/workflows/update-server-lint-test.yaml' | |
- '.github/actions/python/**' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-${{ github.ref_name != 'edge' || github.run_id}}-${{ github.ref_type != 'tag' || github.run_id }} | |
cancel-in-progress: true | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
lint: | |
name: 'update server linting' | |
timeout-minutes: 10 | |
runs-on: 'ubuntu-22.04' | |
steps: | |
- uses: 'actions/checkout@v4' | |
with: | |
fetch-depth: 0 | |
- uses: 'actions/setup-node@v4' | |
with: | |
node-version: '22.4.0' | |
- uses: 'actions/setup-python@v4' | |
with: | |
python-version: '3.10' | |
- uses: './.github/actions/python/setup' | |
with: | |
project: 'update-server' | |
- name: Lint | |
run: make -C update-server lint | |
test: | |
name: 'update server package tests' | |
timeout-minutes: 10 | |
needs: [lint] | |
runs-on: 'ubuntu-22.04' | |
steps: | |
- uses: 'actions/checkout@v4' | |
with: | |
fetch-depth: 0 | |
- uses: 'actions/setup-node@v4' | |
with: | |
node-version: '22.4.0' | |
- uses: 'actions/setup-python@v4' | |
with: | |
python-version: '3.10' | |
- uses: './.github/actions/python/setup' | |
with: | |
project: 'update-server' | |
- name: Test | |
run: make -C update-server test | |
- uses: 'codecov/codecov-action@v3' | |
with: | |
files: ./update-server/coverage.xml | |
flags: update-server |