Skip to content

Update next version #304

Update next version

Update next version #304

Workflow file for this run

name: Helloworld CI
on:
push:
paths:
- hello-world/**
defaults:
run:
working-directory: ./hello-world/smart-contract
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install
run: npm ci
- name: Code quality
run: npm run fmt:check
- name: Test
run: npm run test