feat: change donate button #90
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: CI | |
on: [ push, pull_request ] | |
jobs: | |
tests: | |
name: Tests and Lint Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Node 15.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 15.x | |
- name: Install dependencies | |
run: yarn install | |
- name: Link Check | |
run: yarn lint-check | |
- name: Tests | |
run: yarn test | |
- name: Build Prod | |
run: yarn build |