Skip to content
This repository has been archived by the owner on Sep 26, 2024. It is now read-only.

[Sweep GHA Fix] Fix failing GitHub Actions #6562

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Continuous Integration

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: '14.17.0'

- name: Install dependencies
run: npm install

- name: Build the project
run: npm run build
When writing unit tests, they will be complete, extensive, and cover ALL edge cases. You will make up data for unit tests. Create mocks when necessary.
2 changes: 1 addition & 1 deletion src/pages/partners/payment-agent/_who-can-apply.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
SecondaryHeader,
} from '../affiliate-ib/_who-can-apply'
import { Flex } from 'components/containers'
import { Localize } from 'components/localization'
import { Localize } from 'components/localization/index'
import { Header, LocalizedLinkText, Timeline } from 'components/elements'
import { LinkButton } from 'components/form'
import CurrencyExchange from 'images/svg/partners/currency_exchange.svg'
Expand Down
Loading