Post duration Component was created and addition nav pages are created for share a need and make an offer #124
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 | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
linting: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Code Checkout | |
uses: actions/checkout@v3 | |
- name: Use Node.js 16 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: load default env variables | |
run: cp server/sample.env server/.env | |
- name: lint-client? | |
run: cd client && npm ci && npm run lint | |
- name: lint-server? | |
run: cd server && npm ci && npm run lint |