Use less agressive linting rules (#1056) #1970
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: E2E tests | |
on: | |
push: | |
branches: ["*"] | |
concurrency: | |
group: end-to-end | |
cancel-in-progress: false | |
jobs: | |
test: | |
name: E2E tests | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
if: ${{ github.repository == 'swan-io/swan-partner-frontend' && contains('refs/heads/main', github.ref) || contains(github.event.head_commit.message, '[E2E]') }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Edit /etc/hosts | |
run: | | |
sudo echo "127.0.0.1 banking.swan.localhost" | sudo tee -a /etc/hosts | |
sudo echo "127.0.0.1 onboarding.swan.localhost" | sudo tee -a /etc/hosts | |
- name: Write .env.e2e file | |
run: | | |
echo "NODE_ENV=test" > .env.e2e | |
echo "LOG_LEVEL=error" >> .env.e2e | |
echo "PARTNER_ADMIN_API_URL=${{ secrets.E2E_PARTNER_ADMIN_API_URL }}" >> .env.e2e | |
echo "PARTNER_API_URL=${{ secrets.E2E_PARTNER_API_URL }}" >> .env.e2e | |
echo "UNAUTHENTICATED_API_URL=${{ secrets.E2E_UNAUTHENTICATED_API_URL }}" >> .env.e2e | |
echo "OAUTH_SERVER_URL=${{ secrets.E2E_OAUTH_SERVER_URL }}" >> .env.e2e | |
echo "OAUTH_CLIENT_ID=${{ secrets.E2E_OAUTH_CLIENT_ID }}" >> .env.e2e | |
echo "OAUTH_CLIENT_SECRET=${{ secrets.E2E_OAUTH_CLIENT_SECRET }}" >> .env.e2e | |
echo "COOKIE_KEY=${{ secrets.E2E_COOKIE_KEY }}" >> .env.e2e | |
echo "BANKING_URL=http://banking.swan.localhost:8080" >> .env.e2e | |
echo "ONBOARDING_URL=http://onboarding.swan.localhost:8080" >> .env.e2e | |
echo "PAYMENT_URL=http://payment.swan.localhost:8080" >> .env.e2e | |
echo "TEST_KEY=${{ secrets.E2E_TEST_KEY }}" >> .env.e2e | |
echo "PHONE_NUMBER=${{ secrets.E2E_PHONE_NUMBER }}" >> .env.e2e | |
echo "PASSCODE=${{ secrets.E2E_PASSCODE }}" >> .env.e2e | |
echo "TWILIO_ACCOUNT_ID=${{ secrets.E2E_TWILIO_ACCOUNT_ID }}" >> .env.e2e | |
echo "TWILIO_AUTH_TOKEN=${{ secrets.E2E_TWILIO_AUTH_TOKEN }}" >> .env.e2e | |
echo "WEBHOOK_SITE_API_KEY=${{ secrets.E2E_WEBHOOK_SITE_API_KEY }}" >> .env.e2e | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Get playwright version | |
run: | | |
PLAYWRIGHT_VERSION=$(npm ls @playwright/test | grep @playwright | sed 's/.*@//') | |
echo "Playwright version: $PLAYWRIGHT_VERSION" | |
echo "PLAYWRIGHT_VERSION=$PLAYWRIGHT_VERSION" >> $GITHUB_ENV | |
- name: Cache playwright | |
id: cache-playwright | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/ms-playwright | |
key: playwright-${{ env.PLAYWRIGHT_VERSION }} | |
- name: Setup playwright | |
if: ${{ steps.cache-playwright.outputs.cache-hit != 'true' }} | |
run: pnpm playwright install --with-deps | |
- name: GraphQL Codegen | |
run: pnpm graphql-codegen | |
- name: Run E2E tests | |
run: pnpm test-e2e | |
env: | |
CI: true | |
- uses: actions/upload-artifact@v4 | |
if: ${{ failure() }} | |
with: | |
name: tests-results | |
path: tests/results/ | |
retention-days: 7 | |
- name: Notify Slack about failure | |
if: ${{ failure() }} | |
uses: slackapi/slack-github-action@v1 | |
with: | |
channel-id: "C04HS607GMD" | |
payload: | | |
{ | |
"unfurl_links": false, | |
"blocks": [ | |
{ | |
"type": "section", | |
"text": { | |
"type": "mrkdwn", | |
"text": "💥 End to End tests failed on main branch" | |
}, | |
"accessory": { | |
"type": "button", | |
"text": { | |
"type": "plain_text", | |
"text": "Open on GitHub", | |
"emoji": true | |
}, | |
"value": "github", | |
"url": "https://github.com/swan-io/swan-partner-frontend/actions/runs/${{ github.run_id }}", | |
"action_id": "button-action" | |
} | |
} | |
] | |
} | |
env: | |
SLACK_BOT_TOKEN: ${{ secrets.E2E_SLACK_BOT_TOKEN }} |