Skip to content

Commit

Permalink
create workflow to run tests in the cloud
Browse files Browse the repository at this point in the history
  • Loading branch information
alexivanov committed Mar 19, 2024
1 parent 7e40f8f commit e296dac
Showing 1 changed file with 65 additions and 0 deletions.
65 changes: 65 additions & 0 deletions .github/workflows/test-meticulous-in-cloud.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
# Workflow for automated Meticulous tests in Meticulous' cloud.

name: Tests - react-bmi-calculator (in cloud)

on:
push:
branches:
- main
- releases/*
pull_request: {}
workflow_dispatch: {}

permissions:
actions: write
contents: read
statuses: write
pull-requests: write
packages: read

jobs:
test:
name: Report diffs (in cloud)
runs-on: ubuntu-latest

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

- name: Use Node.js LTS
id: nodejs
uses: actions/setup-node@v3
with:
node-version: "16"
cache: yarn

- name: Cache node_modules
uses: actions/cache@v3
with:
path: |
node_modules
tests/react-bmi-calculator/node_modules
key: node-modules-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
node-modules-${{ runner.os }}
- name: Install react-bmi-calculator dependencies
working-directory: ./tests/react-bmi-calculator
run: yarn install --frozen-lockfile --non-interactive

- name: Build react-bmi-calculator
working-directory: ./tests/react-bmi-calculator
run: yarn build

- name: Serve react-bmi-calculator
working-directory: ./tests/react-bmi-calculator
run: |
yarn serve &
sleep 4
- name: Run report-diffs-action
id: test
uses: ./in-cloud
with:
api-token: "${{ secrets.METICULOUS_API_TOKEN }}"
app-url: http://localhost:3000

0 comments on commit e296dac

Please sign in to comment.