Add Magna address to circ. supply exclusion list (#6) #44
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: Deploy functions | |
on: | |
workflow_dispatch: | |
push: | |
branches: [main] | |
jobs: | |
deploy: | |
name: Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Install Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: npm ci | |
- name: Lint code | |
run: npm run lint | |
- name: Test | |
run: npm test | |
- name: Deploy | |
uses: serverless/github-action@v3.2 | |
with: | |
args: deploy | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
COINGECKO_API_KEY: ${{ secrets.COINGECKO_API_KEY }} | |
GOLDSKY_PROJECT_ID: ${{ secrets.GOLDSKY_PROJECT_ID }} | |
THIRDWEB_CLIENT_ID: ${{ secrets.THIRDWEB_CLIENT_ID }} | |
TROVE_API_KEY: ${{ secrets.TROVE_API_KEY }} |