chore(head): update favicon & change page title #25
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: Client Lint | |
on: | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
# Install dependencies for the server as well, because the client depends on it (tRPC) | |
- name: Install dependencies (server) | |
working-directory: ./server | |
run: yarn install | |
- name: Install dependencies (client) | |
working-directory: ./client | |
run: yarn install | |
- name: Run linter (client) | |
working-directory: ./client | |
run: yarn lint |