feat: initial release #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |