feat: change de color and the header and bold the text #318
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: build | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
lint: | |
name: Lint Check | |
runs-on: 'ubuntu-latest' | |
steps: | |
- name: Checkout Source | |
uses: actions/checkout@v3 | |
- name: Setup Bun | |
uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: latest | |
- name: Install Dependencies | |
run: bun i | |
- name: Run Lint Check | |
run: bun run lint | |
build: | |
name: Build Check | |
runs-on: 'ubuntu-latest' | |
steps: | |
- name: Checkout Source | |
uses: actions/checkout@v3 | |
- name: Setup Bun | |
uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: latest | |
- name: Install Dependencies | |
run: bun i | |
- name: Build Check | |
env: | |
NOTION_ACCESS_TOKEN: ${{ secrets.NOTION_ACCESS_TOKEN }} | |
NOTION_NOTES_DATABASE_ID_ES: ${{ secrets.NOTION_NOTES_DATABASE_ID_ES }} | |
NOTION_NOTES_DATABASE_ID_EN: ${{ secrets.NOTION_NOTES_DATABASE_ID_EN }} | |
NOTION_PROJECTS_DATABASE_ID: ${{ secrets.NOTION_PROJECTS_DATABASE_ID }} | |
run: bun run build |