Chore: Add Oauth #197
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: Build | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
build-processor: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: processor | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.9.0' | |
- name: Install dependencies | |
run: npm ci | |
- name: Run ESLint check | |
run: npm run lint | |
- name: Run Prettier check | |
run: npm run prettier:check | |
- name: Build project | |
run: npm run build | |
- name: Run tests | |
run: npm run test | |
- name: Archive junit report | |
uses: actions/upload-artifact@v4 | |
with: | |
name: junit-report | |
path: processor/junit-report.xml | |
- name: Archive code coverage results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: code-coverage-report | |
path: processor/coverage/lcov.info |