docs: add FC5570 as a contributor for code, ideas, and 2 more #497
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: Continous Integration | |
on: | |
pull_request: | |
branches: [main] | |
push: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 'latest' | |
cache: 'yarn' | |
- name: Install Dependencies | |
run: yarn install --immutable | |
# Waiting for API key approval | |
# - name: Run Tests | |
# run: yarn coverage | |
- name: Build | |
run: yarn build |