Skip to content

Commit

Permalink
Added Build pipeline for Sample WebApi with Express.js and EventStoreDB
Browse files Browse the repository at this point in the history
  • Loading branch information
oskardudycz committed Mar 16, 2024
1 parent b74e3c4 commit e3a167f
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,18 @@ on:
# run it on push to the default repository branch
push:
branches: [main]
paths:
- "src/**"
paths-ignore:
- "src/docs/**"
- "src/.vscode/**"
# run it during pull request
pull_request:
paths:
- "src/**"
paths-ignore:
- "src/docs/**"
- "src/.vscode/**"

defaults:
run:
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Build and test Sample - WebApi with Express.js and EventStoreDB

on:
# run it on push to the default repository branch
push:
branches: [main]
paths:
- "samples/webApi/expressjs-with-esdb"
paths-ignore:
- "src/.vscode/**"
# run it during pull request
pull_request:
paths:
- "samples/webApi/expressjs-with-esdb"
paths-ignore:
- "src/.vscode/**"

defaults:
run:
working-directory: ./src/samples/webApi/expressjs-with-esdb

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: ./src/samples/webApi/expressjs-with-esdb/.nvmrc
cache: "npm"
cache-dependency-path: "./src/samples/webApi/expressjs-with-esdb/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
2 changes: 1 addition & 1 deletion samples/webApi/expressjs-with-esdb/.nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v20.10.0
v20.11.1

0 comments on commit e3a167f

Please sign in to comment.