chore(deps): update typescript-eslint monorepo to v7.18.0 #365
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 and Test API | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
defaults: | |
run: | |
working-directory: mobile-api | |
jobs: | |
build-and-test: | |
name: Build and Test API | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x] | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: "npm" | |
- name: Install dependencies | |
run: npm ci | |
- name: Lint source files | |
run: npm run lint | |
- name: Build and start container | |
run: docker compose -f docker-compose.dev.yml up -d | |
- name: Sleep for 1 minute | |
run: sleep 60 | |
- name: Ping container | |
run: curl localhost:3000/ping | |
- name: Create .env file | |
run: cp sample.env .env | |
- name: Run tests | |
run: npm test |