Ensure that notifications on legacy http integrations navigate to the origin #1384
This file contains hidden or 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: Run Tests | |
| on: | |
| pull_request: | |
| branches: | |
| - "**" | |
| jobs: | |
| test: | |
| runs-on: ubuntu-22.04 | |
| container: | |
| image: python:2.7.18-buster | |
| strategy: | |
| matrix: | |
| node-version: [14.x] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install Yarn | |
| run: npm install -g yarn | |
| - name: "[Setup] Install dependencies" | |
| run: yarn | |
| - name: "[Test] Run linters" | |
| continue-on-error: true | |
| run: yarn lint | |
| - name: "[Test] Run all legacy ava tests" | |
| run: yarn test:CI | |
| - name: "[Test] Run all jest tests" | |
| run: yarn jest |