Compatible with cjs & esm #74
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: Review | |
on: [push, pull_request] | |
jobs: | |
review: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the source code | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
uses: ./.github/actions/install | |
- name: Run linters | |
run: npm run lint | |
- name: Launch a postgres instance | |
run: | | |
docker run -d -p 5432:5432 -e POSTGRES_DB=db -e POSTGRES_USER=user -e POSTGRES_PASSWORD=password postgres:13 | |
npx prisma migrate dev --schema ./test/prisma/schema.prisma | |
env: | |
DATABASE_URL: postgresql://user:password@localhost:5432/db | |
- name: Launch a memcached instance | |
run: docker run -d -p 11211:11211 memcached:1.6.9 | |
- name: Run tests | |
run: npm run test | |
env: | |
DATABASE_URL: postgresql://user:password@localhost:5432/db | |
- name: Publish test coverage | |
uses: codacy/codacy-coverage-reporter-action@v1 | |
with: | |
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }} | |
coverage-reports: ./coverage/lcov.info |