feat: add NGINX variable documentation #157
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: builds the example ref-browser usage of reference-lib | |
on: | |
push: | |
branches: ['main'] | |
paths: ['examples/ref-browser/**', 'reference-lib/**'] | |
pull_request: | |
branches: ['main'] | |
paths: ['examples/ref-browser/**', 'reference-lib/**'] | |
defaults: | |
run: | |
working-directory: ./examples/ref-browser | |
shell: bash | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
- name: build the reference-lib | |
working-directory: ./reference-lib | |
run: | | |
npm ci | |
npm run build | |
- run: npm ci | |
- run: npm run lint | |
- run: npm run build |