Skip to content

chore: #146 Initializing next iteration #157

chore: #146 Initializing next iteration

chore: #146 Initializing next iteration #157

Workflow file for this run

name: build-verify-package
on:
push:
paths-ignore:
- '.github/**'
- '.gitignore'
- 'LICENSE'
- '*.md'
pull_request:
paths-ignore:
- '.github/**'
- '.gitignore'
- 'LICENSE'
- '*.md'
permissions: read-all
jobs:
build-verify-package:
runs-on: ubuntu-latest
environment: Build
steps:
- name: Checkout Code
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Set Node.js 20.x
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version: 20.x
cache: 'npm'
- name: Dependencies installation
run: npm install
- name: Run unit tests
run: npm run test
- name: Typescript compilation and Package build
run: npm run build