Merge branch 'main' into gh-actions #6
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: Header Generator Tests | |
on: | |
push: | |
branches: '*' | |
pull_request: | |
branches: '*' | |
jobs: | |
build-and-test: | |
name: Build & Test TS lib | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Install Dependencies | |
run: npm ci | |
working-directory: ./header-gen | |
- name: Build | |
run: npm run build | |
working-directory: ./header-gen | |
- name: Run Jest Tests | |
run: npm test | |
working-directory: ./header-gen |