Add nodejs 22.x as latest LTS #218
Workflow file for this run
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
name: rclnodejs - Linux Build and Test | |
on: | |
push: | |
branches: | |
- develop | |
- jazzy | |
- iron-irwini | |
- humble-hawksbill | |
pull_request: | |
branches: | |
- develop | |
- jazzy | |
- iron-irwini | |
- humble-hawksbill | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
identify-ros-distro: | |
uses: ./.github/workflows/identify-ros-distro.yml | |
build: | |
needs: identify-ros-distro | |
runs-on: ${{ needs.identify-ros-distro.outputs.linuxos }} | |
container: | |
image: osrf/ros:${{ needs.identify-ros-distro.outputs.distro }}-desktop | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: [20.X, 22.X] | |
steps: | |
- name: Setup Node.js ${{ matrix.node-version }} | |
uses: actions/[email protected] | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Setup ROS2 | |
uses: ros-tooling/[email protected] | |
- name: Install test-msgs on Linux | |
run: | | |
sudo apt install ros-${{ needs.identify-ros-distro.outputs.distro }}-test-msgs | |
- uses: actions/[email protected] | |
- name: Build and test rclnodejs | |
run: | | |
source /opt/ros/${{ needs.identify-ros-distro.outputs.distro }}/setup.bash | |
npm i | |
npm test |