chore: update version to 0.9.1 (#7) #29
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: Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
config: [ | |
# For TypeORM 0.3.20, minimum is Node 16.13 | |
{ node: "21", typeorm: "0.3.20" }, | |
] | |
name: Node ${{ matrix.config.node }}, TypeORM ${{ matrix.config.typeorm }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Node | |
uses: ./.github/actions/setup-node | |
with: | |
node-version: ${{ matrix.config.node }} | |
- name: Install TypeORM | |
run: npm install typeorm@${{ matrix.config.typeorm }} | |
- name: Run tests | |
run: npm run test:unit |