Skip to content

Commit

Permalink
Merge pull request #3 from deriv-com/sandeep/migrate-features
Browse files Browse the repository at this point in the history
Sandeep/migrate features
  • Loading branch information
sandeep-deriv authored May 14, 2024
2 parents a7552f1 + cc49fca commit 0ea8eea
Show file tree
Hide file tree
Showing 11 changed files with 726 additions and 113 deletions.
1 change: 1 addition & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ module.exports = {
extends: ['@deriv-com/eslint-config-deriv'],
rules: {
'global-require': 'off',
"import/no-extraneous-dependencies": 'off',
},
overrides: [
{
Expand Down
4 changes: 2 additions & 2 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
# yashim-deriv
# wojciech-deriv
# markwylde-deriv
# balakrishna-deriv
# sandeep-deriv
# shafin-deriv

Expand All @@ -61,4 +60,5 @@
# (in case no pattern matches a path in a PR - this should be treated as a bug and result in adding the path to CODEOWNERS)
# ==============================================================

* @ali-hosseini-deriv @yashim-deriv @wojciech-deriv @markwylde-deriv @balakrishna-deriv @sandeep-deriv @shafin-deriv
* @ali-hosseini-deriv @yashim-deriv @wojciech-deriv @markwylde-deriv
* @sandeep-deriv @shafin-deriv
11 changes: 10 additions & 1 deletion .github/workflows/build-and-deploy-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,18 @@ jobs:
timeout-minutes: 30
runs-on: ubuntu-latest
environment: staging
permissions:
checks: write
pull-requests: write
steps:
- name: Verify user
uses: 'deriv-com/shared-actions/.github/actions/verify_user_in_organization@v1'
with:
username: ${{github.event.pull_request.user.login}}
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}

- name: Checkout to main branch
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup node
uses: actions/setup-node@v3
Expand Down
11 changes: 10 additions & 1 deletion .github/workflows/build-and-deploy-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,18 @@ jobs:
build_to_cloudflare_pages:
timeout-minutes: 30
runs-on: ubuntu-latest
permissions:
checks: write
pull-requests: write
steps:
- name: Verify user
uses: 'deriv-com/shared-actions/.github/actions/verify_user_in_organization@v1'
with:
username: ${{github.event.pull_request.user.login}}
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}

- name: Checkout to branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}

Expand Down
Loading

0 comments on commit 0ea8eea

Please sign in to comment.