feat: Add 'filter' query parameter to force using specific filter for conversion #27
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: CI/CD | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: docker/build-push-action@v4 | |
with: | |
tags: test-image:latest | |
push: false | |
- uses: addnab/docker-run-action@v3 | |
with: | |
image: test-image:latest | |
run: pnpm run validate && pnpm run build && pnpm run test:coverage | |
- uses: codecov/codecov-action@v2 |