feat(assets): add dark and light logo svgs, update readme to reflect … #5
This file contains hidden or 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: Code Atlas Flow | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
frontend: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 4 | |
matrix: | |
node-version: ["20"] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
- name: Install pnpm | |
run: | | |
npm install -g pnpm | |
- name: Install frontend dependencies | |
run: | | |
cd frontend | |
pnpm install | |
- name: Run frontend lint | |
run: | | |
cd frontend | |
pnpm run lint | |
# - name: Run frontend build | |
# run: | | |
# cd frontend | |
# pnpm run build | |
# TODO: Add deployment steps |