Skip to content

Commit

Permalink
add actions
Browse files Browse the repository at this point in the history
Signed-off-by: Erick Wendel <[email protected]>
  • Loading branch information
ErickWendel committed Jul 23, 2024
1 parent b9b3efc commit 17eb9b1
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Cypress Tests - Complete Project

on:
push:
branches:
- main
paths:
- '**.js'
- '**.json'
- '**.yml'

jobs:
setup-and-test:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Docker Compose
run: |
sudo rm /usr/local/bin/docker-compose
curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /tmp/docker-compose
chmod +x /tmp/docker-compose
sudo mv /tmp/docker-compose /usr/local/bin/docker-compose
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20

- name: Start nodered
run: npm run docker:install-module

- run: npm ci
- run: npm run cypress:headless

- name: Clean up
run: docker-compose down --volumes

0 comments on commit 17eb9b1

Please sign in to comment.