fix: update infinyon/json-sql
sm refs to use embeds
#443
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: Continuous Integration | |
on: | |
pull_request: | |
branches: [main] | |
concurrency: | |
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | |
cancel-in-progress: true | |
jobs: | |
integrity: | |
name: Integrity Checks | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
deployments: write | |
steps: | |
- name: Checkout Source | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.ref }} | |
- name: Setup NodeJS | |
uses: actions/setup-node@v4 | |
- name: Install Dependencies | |
run: npm ci | |
- name: Build for Production | |
env: | |
NODE_ENV: production | |
run: npm run build | |
- name: Runs Tests | |
env: | |
NODE_ENV: production | |
run: npm run test | |
# trial use, enabling error on broken link | |
- name: Check internal links | |
uses: untitaker/hyperlink@0.1.32 | |
with: | |
args: ./build --check-anchors | |
# continue-on-error: true |