From af4b5438f4d75881bb7a4a1f00fffc7f2bfdb436 Mon Sep 17 00:00:00 2001 From: Oskar Dudycz Date: Sun, 29 Dec 2024 13:21:14 +0100 Subject: [PATCH] Added GitHub action for MongoDB event store Web Api sample --- ...t_sample_webapi-expressjs-with-mongodb.yml | 69 +++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 .github/workflows/build_and_test_sample_webapi-expressjs-with-mongodb.yml diff --git a/.github/workflows/build_and_test_sample_webapi-expressjs-with-mongodb.yml b/.github/workflows/build_and_test_sample_webapi-expressjs-with-mongodb.yml new file mode 100644 index 00000000..811115a3 --- /dev/null +++ b/.github/workflows/build_and_test_sample_webapi-expressjs-with-mongodb.yml @@ -0,0 +1,69 @@ +name: Build and test Sample - WebApi with Express.js and MongoDB + +on: + # run it on push to the default repository branch + push: + branches: [main] + paths: + - "samples/webApi/expressjs-with-mongodb/**" + - "./.github/workflows/build_and_test_sample_webapi-expressjs-with-mongodb.yml" + + # run it during pull request + pull_request: + paths: + - "samples/webApi/expressjs-with-mongodb/**" + - "./.github/workflows/build_and_test_sample_webapi-expressjs-with-mongodb.yml" + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +defaults: + run: + working-directory: samples/webApi/expressjs-with-mongodb + +jobs: + build-and-test-code: + name: Build application code + # use system defined below in the tests matrix + runs-on: ubuntu-latest + + steps: + - name: Check Out Repo + uses: actions/checkout@v4 + + - name: Use Node.js + uses: actions/setup-node@v4 + with: + node-version-file: ./samples/webApi/expressjs-with-mongodb/.nvmrc + cache: "npm" + cache-dependency-path: "./samples/webApi/expressjs-with-mongodb/package-lock.json" + + - name: Install dependencies + run: npm ci + + - name: Build TS + run: npm run build:ts + + - name: Run linting (ESlint and Prettier) + run: npm run lint + + - name: Build + run: npm run build + + - name: Test + run: npm run test + + - name: Set up Docker Buildx + id: buildx + uses: docker/setup-buildx-action@v2 + + - name: Build Docker + id: docker_build + uses: docker/build-push-action@v4 + with: + context: "./samples/webApi/expressjs-with-mongodb" + push: false + tags: oskardudycz/emmett.mongodb.sample:latest + + - name: Image digest + run: echo ${{ steps.docker_build.outputs.digest }}