Skip to content

Bump NodeJS from 16 to 20 #530

Bump NodeJS from 16 to 20

Bump NodeJS from 16 to 20 #530

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
NODE_VERSION: '20'
concurrency:
group: '${{ github.workflow }}-${{ github.head_ref || github.run_id }}'
cancel-in-progress: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4.1.0
- name: Run JQ lint
uses: home-assistant/actions/helpers/jq@master
- name: Setup YQ
uses: chrisdickinson/setup-yq@latest
with:
yq-version: v4.25.3
- name: Use Node.js ${{ env.node-NODE_VERSION }}
uses: actions/setup-node@v3.8.1
with:
node-version: ${{ env.node-NODE_VERSION }}
cache: 'yarn'
- name: Lint YAML files
run: |
yq '.' ./data/discord/messages/common.yaml
yq '.' ./data/discord/messages/esphome.yaml
yq '.' ./data/discord/messages/homeassistant.yaml
- name: Install dependencies
run: yarn install --immutable
- name: Run yarn lint
run: yarn lint
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4.1.0
- name: Use Node.js ${{ env.node-NODE_VERSION }}
uses: actions/setup-node@v3.8.1
with:
node-version: ${{ env.node-NODE_VERSION }}
cache: 'yarn'
- name: Install dependencies
run: yarn install --immutable
- name: Run tests
run: yarn run test
build-container:
name: Build container
needs: test
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4.1.0
- name: Use Node.js ${{ env.node-NODE_VERSION }}
uses: actions/setup-node@v3.8.1
with:
node-version: ${{ env.node-NODE_VERSION }}
cache: 'yarn'
- name: Install dependencies
run: yarn install --immutable
- name: Build container
run: docker build . -t home-assistant/service-hub