Merge pull request #19 from daniel7grant/feature/weird-numbers #91
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: Test Node.js package | |
on: push | |
jobs: | |
build: | |
strategy: | |
matrix: | |
version: [18, 20, 22] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v3 | |
- name: Setup Node v${{ matrix.version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.version }} | |
registry-url: https://registry.npmjs.org/ | |
- name: Install dependencies | |
run: npm ci | |
- name: Run linting | |
run: npm run lint | |
- name: Run tests | |
run: npm test | |
- name: Build TypeScript files | |
run: npm run build | |
- name: Test ESLint 9 example for compatibility | |
run: | | |
cd examples/recommended | |
npm ci | |
(npm run lint || true) | grep -aq "Type of name in User is not matching the TypeORM column type (expected type: string)" | |
- name: Test legacy example for compatibility | |
run: | | |
# Workaround until they fix scoping | |
mv eslint.config.mjs _eslint.config.mjs | |
cd examples/legacy | |
npm ci | |
(npm run lint || true) | grep -aq "Type of name in User is not matching the TypeORM column type (expected type: string)" |