Update/url #5
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: Backend CI | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- 'api/**' | |
pull_request: | |
branches: [ main ] | |
paths: | |
- 'api/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./api | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '>=18' | |
- name: Install dependencies | |
run: npm ci | |
# - name: Run tests | |
# run: npm test // Add tests later | |
- name: Lint | |
run: npm run lint |