Bump certifi in /examples/install-webhooks/backend/python #362
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: Test JSON schema | |
on: | |
push: | |
pull_request_target: | |
types: [labeled] | |
jobs: | |
test-schema: | |
runs-on: ubuntu-latest | |
if: contains(github.event.pull_request.labels.*.name, 'safe-to-test') | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Test schema | |
run: | | |
yarn install --frozen-lockfile | |
yarn types | |
yarn lint | |
yarn test | |
working-directory: ./schema |