This repository has been archived by the owner on Oct 31, 2024. It is now read-only.
chore(deps): bump braces from 3.0.2 to 3.0.3 #159
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: [push, pull_request] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
env: | |
AWS_ACCESS_KEY_ID: foo | |
AWS_SECRET_ACCESS_KEY: bar | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install | |
run: yarn | |
- name: build | |
run: yarn run build | |
- name: run localstack | |
run: docker-compose build | |
- name: run localstack | |
run: docker-compose up -d | |
- name: wait for localstack | |
run: ./scripts/wait-for-url.js http://localhost:4566 && sleep 5 | |
- name: test | |
run: yarn test |