Skip to content

Update README.md

Update README.md #2

Workflow file for this run

name: Test
on:
push:
branches: [ "main", "test" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Cache Node.js modules
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '22'
- name: Install dependencies
run: npm install -g yarn && yarn
- name: npx blueprint build helloworld
run: npx blueprint build helloworld
- name: npx blueprint build sample
run: npx blueprint build sample
- name: Run tests
run: make test