Skip to content

Updated cap version #18

Updated cap version

Updated cap version #18

Workflow file for this run

name: CI Build
on:
push:
branches: [ main ]
jobs:
build:
runs-on: macos-latest
timeout-minutes: 30 # sometimes we have to wait for this to be available since they are actual machines
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
# Install required packages
- name: Install packages
run: npm i
# Run the build script
- name: Build
run: npm run build
# run the verify script
- name: Verify
run: npm run verify