Fix: EDV storage always pass default headers #22
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 and Tests | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '16.x' | |
- run: yarn install --frozen-lockfile --ignore-scripts | |
- run: docker-compose -f ./docker-compose.edv.yml up -d | |
- run: yarn build | |
- run: yarn test | |
- run: yarn run-examples |