File tree Expand file tree Collapse file tree 21 files changed +41560
-14048
lines changed Expand file tree Collapse file tree 21 files changed +41560
-14048
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ CSRF_TOKEN_API_PATH=/csrf/api/v1/token
5
5
ECOMMERCE_BASE_URL = http://localhost:18130
6
6
LANGUAGE_PREFERENCE_COOKIE_NAME = openedx-language-preference
7
7
LMS_BASE_URL = http://localhost:18000
8
+ STUDIO_BASE_URL = http://localhost:18010
8
9
LOGIN_URL = http://localhost:18000/login
9
10
LOGOUT_URL = http://localhost:18000/logout
10
11
MARKETING_SITE_BASE_URL = http://localhost:18000
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ # Run the workflow that adds new tickets that are either:
2
+ # - labelled "DEPR"
3
+ # - title starts with "[DEPR]"
4
+ # - body starts with "Proposal Date" (this is the first template field)
5
+ # to the org-wide DEPR project board
6
+
7
+ name : Add newly created DEPR issues to the DEPR project board
8
+
9
+ on :
10
+ issues :
11
+ types : [opened]
12
+
13
+ jobs :
14
+ routeissue :
15
+ uses : openedx/.github/.github/workflows/add-depr-ticket-to-depr-board.yml@master
16
+ secrets :
17
+ GITHUB_APP_ID : ${{ secrets.GRAPHQL_AUTH_APP_ID }}
18
+ GITHUB_APP_PRIVATE_KEY : ${{ secrets.GRAPHQL_AUTH_APP_PEM }}
19
+ SLACK_BOT_TOKEN : ${{ secrets.SLACK_ISSUE_BOT_TOKEN }}
Original file line number Diff line number Diff line change 1
1
name : Default CI
2
- on : [push, pull_request]
2
+ on :
3
+ push :
4
+ branches :
5
+ - master
6
+ pull_request :
7
+ branches :
8
+ - ' **'
3
9
jobs :
4
- build :
10
+ tests :
5
11
runs-on : ubuntu-latest
12
+ strategy :
13
+ matrix :
14
+ node : [16]
6
15
steps :
7
16
- name : Checkout
8
17
uses : actions/checkout@v2
11
20
- name : Setup Nodejs
12
21
uses : actions/setup-node@v2
13
22
with :
14
- node-version : 12
23
+ node-version : ${{ matrix.node }}
15
24
- name : Install dependencies
16
25
run : npm ci
17
26
- name : Validate package-lock.json changes
Original file line number Diff line number Diff line change
1
+ # check package-lock file version
2
+
3
+ name : lockfileVersion check
4
+
5
+ on :
6
+ push :
7
+ branches :
8
+ - master
9
+ pull_request :
10
+
11
+ jobs :
12
+ version-check :
13
+ uses : openedx/.github/.github/workflows/lockfileversion-check.yml@master
14
+
Original file line number Diff line number Diff line change @@ -2,38 +2,38 @@ name: Release CI
2
2
on :
3
3
push :
4
4
branches :
5
- - master
5
+ - master
6
6
jobs :
7
7
release :
8
8
name : Release
9
9
runs-on : ubuntu-latest
10
10
steps :
11
- - name : Checkout
12
- uses : actions/checkout@v2
13
- with :
14
- fetch-depth : 0
15
- - name : Setup Node.js
16
- uses : actions/setup-node@v2
17
- with :
18
- node-version : 12
19
- - name : Install dependencies
20
- run : npm ci
21
- - name : Validate package-lock.json changes
22
- run : make validate-no-uncommitted-package-lock-changes
23
- - name : Lint
24
- run : npm run lint
25
- - name : Test
26
- run : npm run test
27
- - name : i18n_extract
28
- run : npm run i18n_extract
29
- - name : Coverage
30
- uses : codecov/codecov-action@v2
31
- - name : Build
32
- run : npm run build
33
- - name : Release
34
- uses : cycjimmy/semantic-release-action@v2
35
- with :
36
- semantic_version : 16
37
- env :
38
- GITHUB_TOKEN : ${{ secrets.SEMANTIC_RELEASE_GITHUB_TOKEN }}
39
- NPM_TOKEN : ${{ secrets.SEMANTIC_RELEASE_NPM_TOKEN }}
11
+ - name : Checkout
12
+ uses : actions/checkout@v2
13
+ with :
14
+ fetch-depth : 0
15
+ - name : Setup Node.js
16
+ uses : actions/setup-node@v2
17
+ with :
18
+ node-version : 16
19
+ - name : Install dependencies
20
+ run : npm ci
21
+ - name : Validate package-lock.json changes
22
+ run : make validate-no-uncommitted-package-lock-changes
23
+ - name : Lint
24
+ run : npm run lint
25
+ - name : Test
26
+ run : npm run test
27
+ - name : i18n_extract
28
+ run : npm run i18n_extract
29
+ - name : Coverage
30
+ uses : codecov/codecov-action@v2
31
+ - name : Build
32
+ run : npm run build
33
+ - name : Release
34
+ uses : cycjimmy/semantic-release-action@v2
35
+ with :
36
+ semantic_version : 16
37
+ env :
38
+ GITHUB_TOKEN : ${{ secrets.SEMANTIC_RELEASE_GITHUB_TOKEN }}
39
+ NPM_TOKEN : ${{ secrets.SEMANTIC_RELEASE_NPM_TOKEN }}
Original file line number Diff line number Diff line change 1
1
[main]
2
2
host = https://www.transifex.com
3
3
4
- [edx-platform. frontend-component-header]
4
+ [o:open- edx:p:edx -platform:r: frontend-component-header]
5
5
file_filter = src/i18n/messages/<lang>.json
6
6
source_file = src/i18n/transifex_input.json
7
7
source_lang = en
8
- type = KEYVALUEJSON
8
+ type = KEYVALUEJSON
9
+
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ push_translations:
50
50
51
51
# Pulls translations from Transifex.
52
52
pull_translations :
53
- tx pull -f --mode reviewed --language =$(transifex_langs )
53
+ tx pull -f --mode reviewed --languages =$(transifex_langs )
54
54
55
55
# This target is used by Travis.
56
56
validate-no-uncommitted-package-lock-changes :
You can’t perform that action at this time.
0 commit comments