This repository was archived by the owner on Dec 16, 2024. It is now read-only.
Add BODEGA #1048
This file contains hidden or 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: Node.js CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 18.x | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Check format | |
| run: npm run check-format | |
| - name: Run build | |
| run: npm run build | |
| - name: Run test | |
| run: npm test | |
| env: | |
| BLOCKFROST_PROJECT_ID: mainnetTV9qV3mfZXbE6e44TVGMe1UoRlLrpSQt |