fix: polygon support #303
Workflow file for this run
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: Tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '18.x' | |
- run: npm install | |
- run: npm run sls-config-check | |
- run: npm run lint | |
- run: mv .env.example .env | |
- run: npm run test | |
# TODO: problematic on github actions atm - this is covered by seed.run integration tests for now, will fix later | |
# as part of upgrading the storage api | |
# - run: npm run s3-local-setup | |
# - run: npm run dev & | |
# - run: sleep 40 | |
# - run: npm run integration:local |