Skip to content

Adding the Critic sample #11

Adding the Critic sample

Adding the Critic sample #11

Workflow file for this run

name: Hello World
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
timeout-minutes: 5
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [19.x, 20.x, 21.x]
defaults:
run:
working-directory: "samples/Hello World"
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run start