Migrate to MongoDB #3311
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: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
windows: | |
runs-on: windows-latest | |
steps: | |
- uses: textbook/take-action@nodejs | |
with: | |
node-version: 20 | |
- run: npm run lint | |
nodejs: | |
strategy: | |
matrix: | |
node: [20.9, 20, 22] | |
runs-on: ubuntu-latest | |
services: | |
mongodb: | |
image: mongo | |
env: | |
MONGO_INITDB_ROOT_PASSWORD: keepitsecret | |
MONGO_INITDB_ROOT_USERNAME: testdb | |
ports: | |
- 27017:27017 | |
env: | |
MONGO_URL: mongodb://testdb:keepitsecret@localhost:27017/testdb?authSource=admin | |
steps: | |
- uses: textbook/take-action@nodejs | |
with: | |
node-version: ${{ matrix.node }} | |
- uses: textbook/take-action@playwright | |
- run: npm run lint | |
- run: npm run test:cover | |
env: | |
FORCE_COLOR: true | |
- run: npm run migration up | |
- run: npm run e2e | |
- run: npm run e2e:dev | |
docker: | |
runs-on: ubuntu-latest | |
services: | |
mongodb: | |
image: mongo | |
env: | |
MONGO_INITDB_ROOT_PASSWORD: keepitsecret | |
MONGO_INITDB_ROOT_USERNAME: testdb | |
ports: | |
- 27017:27017 | |
steps: | |
- uses: textbook/take-action@nodejs | |
with: | |
node-version: 20 | |
- uses: textbook/take-action@playwright | |
- uses: docker/setup-buildx-action@v3 | |
- uses: docker/build-push-action@v5 | |
with: | |
load: true | |
push: false | |
tags: textbook/starter-kit:v2 | |
- id: env-file | |
run: | | |
echo 'LOG_LEVEL=debug' >> "$ENV_FILE" | |
echo 'MONGO_URL=mongodb://testdb:keepitsecret@localhost:27017/testdb?authSource=admin' >> "$ENV_FILE" | |
echo 'NODE_ENV=docker' >> "$ENV_FILE" | |
echo 'PORT=4321' >> "$ENV_FILE" | |
echo "file=$ENV_FILE" >> "$GITHUB_OUTPUT" | |
env: | |
ENV_FILE: docker.env | |
- id: docker-run | |
run: | | |
echo "id=$(docker run \ | |
--detach \ | |
--env-file ${{ steps.env-file.outputs.file }} \ | |
--init \ | |
--network 'host' \ | |
textbook/starter-kit:v2)" >> $GITHUB_OUTPUT | |
- run: npx --yes wait-on --log --timeout 30000 http-get://localhost:4321 | |
- run: npm run e2e | |
env: | |
PLAYWRIGHT_BASE_URL: http://localhost:4321 | |
- if: always() && steps.docker-run.outputs.id | |
run: docker logs ${{ steps.docker-run.outputs.id }} |