fix: firebase hosting env, #168
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: Lint Files | |
# This workflow lints the client and server directories | |
# And will trigger on push *any* branch except master and dev | |
on: | |
push: | |
branches-ignore: | |
- master | |
- dev | |
jobs: | |
lint-client: | |
name: Lint Client | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v3 | |
- name: Use NodeJS v16.14.2 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.14.2 | |
- name: Install Dependencies and Lint | |
run: | | |
cd client | |
npm install | |
npm run lint | |
lint-server: | |
name: Lint Server | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v3 | |
- name: Use NodeJS v16.14.2 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.14.2 | |
- name: Install Dependencies and lint | |
run: | | |
cd server | |
npm install | |
npm run lint |