Skip to content

feat: initial release #3

feat: initial release

feat: initial release #3

Workflow file for this run

name: Pull Request - Build
on:
# Triggers the workflow on push or pull request events but only for the develop branch
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v3
- uses: actions/setup-node@v4
- run: npm install --force
- name: Generate build
run: npm run build
- name: Run Tests
run: npm run test