Skip to content

Hdk 0000/fix pipeline errors #22

Hdk 0000/fix pipeline errors

Hdk 0000/fix pipeline errors #22

Workflow file for this run

name: Build
on:
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint
- name: Format
run: npm run format:check
- name: Tests
run: npm run unit:all
- name: Build
run: npm run build