Skip to content

Update the Dependencies installation guide #79

Update the Dependencies installation guide

Update the Dependencies installation guide #79

Workflow file for this run

name: Run the js-node-app tests
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
concurrency: ci-${{ github.ref }}-${{ github.workflow }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
# Install node
- uses: actions/setup-node@v4
with:
node-version: "20"
- name: Build workspace local package
run: |
cd workspace
npm install
npm run build
- name: Run js-node-app tests
run: |
cd examples/js-node-app
npm install
npm run test:ci