navbar fixes #21
Workflow file for this run
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: Firebase functions lint | |
on: | |
pull_request: | |
branches: | |
- dev | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "18" | |
- name: Install dependencies | |
run: | | |
npm ci | |
cd functions | |
npm ci | |
- name: Install Firebase CLI | |
run: npm install -g firebase-tools | |
- name: Linting | |
run: | | |
cd functions | |
npm run lint |