Skip to content

feat: update oval node to support oval factory deployments #2

feat: update oval node to support oval factory deployments

feat: update oval node to support oval factory deployments #2

Workflow file for this run

name: "CI"
on:
workflow_dispatch:
pull_request:
push:
branches:
- "master"
jobs:
test:
runs-on: "ubuntu-latest"
steps:
- name: "Check out the repo"
uses: "actions/checkout@v4"
- name: "Install Node.js"
uses: "actions/setup-node@v3"
with:
node-version: "20"
- name: "Install Yarn"
run: "npm install --global yarn"
- name: "Install Node.js dependencies"
run: "yarn install"
- name: "Run the tests"
run: "yarn test"
- name: "Add test summary"
run: |
echo "## Tests result" >> $GITHUB_STEP_SUMMARY
echo "✅ Passed" >> $GITHUB_STEP_SUMMARY