Update packages/pure-parse/src/parsers/ParseResult.ts #103
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: Code Integration Checks | |
| on: ['push'] | |
| jobs: | |
| integration-checks: | |
| runs-on: ubuntu-latest | |
| name: Code Inspection | |
| steps: | |
| - name: Check out | |
| uses: actions/checkout@v3 | |
| - name: Set up node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 22 | |
| cache: 'npm' | |
| registry-url: 'https://registry.npmjs.org' | |
| - name: Install | |
| run: npm install --frozen-lockfile | |
| - name: Check Code Formatting | |
| run: npm run check:formatting --workspace=pure-parse | |
| - name: Check Types | |
| run: npm run check:circular-dependencies --workspace=pure-parse | |
| - name: Check Types | |
| run: npm run check:types --workspace=pure-parse | |
| # No linters for this repo | |
| # - name: Lint | |
| # run: | | |
| # npm run lint | |
| - name: Test | |
| run: npm run test --workspace=pure-parse | |
| - name: Build | |
| run: npm run build --workspace=pure-parse | |
| - name: Test Build Output | |
| run: npm run build --workspace=test-app |