Skip to content
This repository has been archived by the owner on Mar 3, 2024. It is now read-only.

Convert to Github Actions #14

Merged
merged 3 commits into from
Sep 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,17 @@ jobs:

strategy:
matrix:
node-version: [8.x, 10.x, 12.x]
node-version: [14.x, 16.x, 18.x]

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm ci
npm run build --if-present
npm test
cache: 'npm'
- run: npm ci
- run: npm run build --if-present
- run: npm test
env:
CI: true
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Maintainability](https://api.codeclimate.com/v1/badges/c456d5f04d612ce8c6fe/maintainability)](https://codeclimate.com/github/matthewturner/smartheat-alexa-smarthome-skill/maintainability) [![Reviewed by Hound](https://img.shields.io/badge/Reviewed_by-Hound-8E64B0.svg)](https://houndci.com) [![Action Status](https://github.com/matthewturner/smartheat-alexa-smarthome-skill/workflows/Node%20CI/badge.svg)](https://github.com/matthewturner/smartheat-alexa-smarthome-skill/actions)
[![Node.js CI](https://github.com/matthewturner/smartheat-alexa-smarthome-skill/workflows/Node%20CI/badge.svg)](https://github.com/matthewturner/smartheat-alexa-smarthome-skill/actions) [![Maintainability](https://api.codeclimate.com/v1/badges/c456d5f04d612ce8c6fe/maintainability)](https://codeclimate.com/github/matthewturner/smartheat-alexa-smarthome-skill/maintainability) [![Reviewed by Hound](https://img.shields.io/badge/Reviewed_by-Hound-8E64B0.svg)](https://houndci.com)

# SmartHeat Legacy Thermostat Skill

Expand Down