Skip to content

Commit 1b89c32

Browse files
authored
Merge pull request #80 from UCMercedACM/develop
2 parents 453e20e + 1bc5d2c commit 1b89c32

179 files changed

Lines changed: 7682 additions & 5968 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Describe the big picture of your changes here to communicate to the maintainers
44

55
## Types of changes
66

7-
What types of changes does your code introduce to Appium?
7+
What types of changes does your code introduce to the Chapter Website?
88
_Put an `x` in the boxes that apply_
99

1010
- [ ] Bugfix (non-breaking change which fixes an issue)

.github/labeler.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
# Add 'test' label to any change to *.spec.js files within the source dir
2-
test:
3-
- src/**/*.spec.js
4-
- e2e/*
2+
test:
3+
- src/**/*.spec.js
4+
- e2e/*
55

66
# Add 'workflows' label to any new or updated GitHub action workflow
7-
workflows:
8-
- .github/workflows/*
7+
workflows:
8+
- .github/workflows/*
99

1010
# Add 'actions' label to any new or updated GitHub action workflow
11-
actions:
12-
- .github/actions/*
11+
actions:
12+
- .github/actions/*
1313

1414
# Add 'angular' label to any changes done to the React application
1515
angular:
16-
- src/*
16+
- src/*
1717

1818
# Add 'angular' label to any changes done to the React application
1919
ngrx:
20-
- src/app/root-store
20+
- src/app/root-store/*
2121

2222
# Add the 'documentation' label to any changes in either of the documented files
2323
documentation:
24-
- README.md
25-
- LICENSE
26-
- CODE_OF_CONDUCT.md
24+
- README.md
25+
- LICENSE
26+
- CODE_OF_CONDUCT.md

.github/workflows/build.yml

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,40 @@
11
name: Build CI
22

3-
on:
4-
pull_request:
5-
branches:
6-
- develop
3+
on:
4+
pull_request:
5+
branches:
6+
- develop
77

88
jobs:
9-
build:
10-
name: Test application and make sure it runs on ${{ matrix.os }}
11-
runs-on: ${{ matrix.os }}
12-
13-
strategy:
14-
matrix:
15-
node-version: [11.x]
16-
os: [ubuntu-latest]
17-
18-
steps:
19-
- name: Checkout to current branch
20-
uses: actions/checkout@v2
21-
22-
- name: Configure Node.js ${{ matrix.node-version }}
23-
uses: actions/setup-node@v1
24-
with:
25-
node-version: ${{ matrix.node-version }}
26-
27-
- name: Ensure a clean branch
28-
run: |
29-
echo 'Cleaning repo before executing build script...'
30-
yarn clean
31-
32-
- name: Install Dependencies
33-
run: |
34-
echo 'Running Setup...'
35-
yarn install
36-
37-
- name: Build Angular Application
38-
run: |
39-
echo 'Building Angular Application...'
40-
yarn build
9+
build:
10+
name: Test application and make sure it runs on ${{ matrix.os }}
11+
runs-on: ${{ matrix.os }}
12+
13+
strategy:
14+
matrix:
15+
node-version: [11.x]
16+
os: [ubuntu-latest]
17+
18+
steps:
19+
- name: Checkout to current branch
20+
uses: actions/checkout@v2
21+
22+
- name: Configure Node.js ${{ matrix.node-version }}
23+
uses: actions/setup-node@v1
24+
with:
25+
node-version: ${{ matrix.node-version }}
26+
27+
- name: Ensure a clean branch
28+
run: |
29+
echo 'Cleaning repo before executing build script...'
30+
yarn clean
31+
32+
- name: Install Dependencies
33+
run: |
34+
echo 'Running Setup...'
35+
yarn install
36+
37+
- name: Build Angular Application
38+
run: |
39+
echo 'Building Angular Application...'
40+
yarn build

.github/workflows/labeler.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: "Pull Request Labeler"
33
on: [pull_request]
44

55
jobs:
6-
triage:
7-
runs-on: ubuntu-latest
8-
steps:
9-
- uses: actions/labeler@v2
10-
with:
11-
repo-token: "${{ secrets.GITHUB_TOKEN }}"
6+
triage:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/labeler@v2
10+
with:
11+
repo-token: "${{ secrets.GITHUB_TOKEN }}"

.github/workflows/lint.yml

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,41 @@
11
name: Lint CI
22

3-
on:
4-
pull_request:
5-
branches:
6-
- develop
7-
- master
3+
on:
4+
pull_request:
5+
branches:
6+
- develop
7+
- master
88

99
jobs:
10-
build:
11-
name: Test application and make sure it runs on ${{ matrix.os }}
12-
runs-on: ${{ matrix.os }}
13-
14-
strategy:
15-
matrix:
16-
node-version: [11.x]
17-
os: [ubuntu-latest]
18-
19-
steps:
20-
- name: Checkout to current branch
21-
uses: actions/checkout@v2
22-
23-
- name: Configure Node.js ${{ matrix.node-version }}
24-
uses: actions/setup-node@v1
25-
with:
26-
node-version: ${{ matrix.node-version }}
27-
28-
- name: Ensure a clean branch
29-
run: |
30-
echo 'Cleaning repo before executing lint script...'
31-
yarn clean
32-
33-
- name: Install Dependencies
34-
run: |
35-
echo 'Running Setup...'
36-
yarn install
37-
38-
- name: Lint Angular Application
39-
run: |
40-
echo 'Linting Angular Application...'
41-
yarn lint
10+
build:
11+
name: Test application and make sure it runs on ${{ matrix.os }}
12+
runs-on: ${{ matrix.os }}
13+
14+
strategy:
15+
matrix:
16+
node-version: [11.x]
17+
os: [ubuntu-latest]
18+
19+
steps:
20+
- name: Checkout to current branch
21+
uses: actions/checkout@v2
22+
23+
- name: Configure Node.js ${{ matrix.node-version }}
24+
uses: actions/setup-node@v1
25+
with:
26+
node-version: ${{ matrix.node-version }}
27+
28+
- name: Ensure a clean branch
29+
run: |
30+
echo 'Cleaning repo before executing lint script...'
31+
yarn clean
32+
33+
- name: Install Dependencies
34+
run: |
35+
echo 'Running Setup...'
36+
yarn install
37+
38+
- name: Lint Angular Application
39+
run: |
40+
echo 'Linting Angular Application...'
41+
yarn lint

.github/workflows/release.yml

Lines changed: 67 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -1,85 +1,85 @@
11
name: Deploy and Update Release Notes
22

33
on:
4-
push:
5-
branches:
6-
- master # Successful Merge on master branch
4+
push:
5+
branches:
6+
- master # Successful Merge on master branch
77

88
jobs:
9-
deploy:
10-
name: Deploy Angular Application
11-
runs-on: ${{ matrix.os }}
9+
deploy:
10+
name: Deploy Angular Application
11+
runs-on: ${{ matrix.os }}
1212

13-
strategy:
14-
matrix:
15-
node-version: [12.x]
16-
os: [ubuntu-latest]
13+
strategy:
14+
matrix:
15+
node-version: [12.x]
16+
os: [ubuntu-latest]
1717

18-
steps:
19-
- name: Checkout to current branch
20-
uses: actions/checkout@v2
21-
with:
22-
persist-credentials: false
18+
steps:
19+
- name: Checkout to current branch
20+
uses: actions/checkout@v2
21+
with:
22+
persist-credentials: false
2323

24-
- name: Configure Node.js ${{ matrix.node-version }}
25-
uses: actions/setup-node@v1
26-
with:
27-
node-version: ${{ matrix.node-version }}
24+
- name: Configure Node.js ${{ matrix.node-version }}
25+
uses: actions/setup-node@v1
26+
with:
27+
node-version: ${{ matrix.node-version }}
2828

29-
- name: Install Dependencies
30-
run: |
31-
echo 'Running Setup...'
32-
yarn install
33-
npm install -g @angular/cli
29+
- name: Install Dependencies
30+
run: |
31+
echo 'Running Setup...'
32+
yarn install
33+
npm install -g @angular/cli
3434
35-
- name: Building Production Environment
36-
run: |
37-
echo 'Building and Compiling...'
38-
rm -rf dist
39-
yarn build
40-
echo ${{ secrets. ACCESS_TOKEN }}
35+
- name: Building Production Environment
36+
run: |
37+
echo 'Building and Compiling...'
38+
rm -rf dist
39+
yarn build
40+
echo ${{ secrets. ACCESS_TOKEN }}
4141
42-
- name: Angular Deploy gh-pages Actions
43-
uses: JamesIves/github-pages-deploy-action@releases/v3
44-
with:
45-
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} # see the Configuration section for how you can create secrets
46-
COMMIT_MESSAGE: Release ${{ github.event.pull_request.head.ref }}
47-
BRANCH: gh-pages # The branch the action should deploy to.
48-
BASE_BRANCH: master
49-
FOLDER: dist
42+
- name: Angular Deploy gh-pages Actions
43+
uses: JamesIves/github-pages-deploy-action@releases/v3
44+
with:
45+
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} # see the Configuration section for how you can create secrets
46+
COMMIT_MESSAGE: Release ${{ github.event.pull_request.head.ref }}
47+
BRANCH: gh-pages # The branch the action should deploy to.
48+
BASE_BRANCH: master
49+
FOLDER: dist
5050

51-
- name: Tag Deployment
52-
run: |
53-
echo 'Tagging Deployment...'
54-
git tag -l ${{ github.event.pull_request.head.ref }}
51+
- name: Tag Deployment
52+
run: |
53+
echo 'Tagging Deployment...'
54+
git tag -l ${{ github.event.pull_request.head.ref }}
5555
56-
release:
57-
name: Update Release notes and Changelog
58-
runs-on: ${{ matrix.os }}
59-
needs: deploy
56+
release:
57+
name: Update Release notes and Changelog
58+
runs-on: ${{ matrix.os }}
59+
needs: deploy
6060

61-
strategy:
62-
matrix:
63-
node-version: [12.x]
64-
os: [ubuntu-latest]
61+
strategy:
62+
matrix:
63+
node-version: [12.x]
64+
os: [ubuntu-latest]
6565

66-
steps:
67-
- name: Checkout to current branch
68-
uses: actions/checkout@v2
69-
with:
70-
persist-credentials: false
66+
steps:
67+
- name: Checkout to current branch
68+
uses: actions/checkout@v2
69+
with:
70+
persist-credentials: false
7171

72-
- name: Configure Node.js ${{ matrix.node-version }}
73-
uses: actions/setup-node@v1
74-
with:
75-
node-version: ${{ matrix.node-version }}
72+
- name: Configure Node.js ${{ matrix.node-version }}
73+
uses: actions/setup-node@v1
74+
with:
75+
node-version: ${{ matrix.node-version }}
7676

77-
- name: Install Dependencies
78-
run: |
79-
echo 'Running Setup...'
80-
yarn install
77+
- name: Install Dependencies
78+
run: |
79+
echo 'Running Setup...'
80+
yarn install
8181
82-
- name: Update Release notes
83-
run: |
84-
echo 'Update Release Notes...'
85-
npm run gren -- --token=${{ secrets.GREN_GITHUB_TOKEN }}
82+
- name: Update Release notes
83+
run: |
84+
echo 'Update Release Notes...'
85+
npm run gren -- --token=${{ secrets.GREN_GITHUB_TOKEN }}

0 commit comments

Comments
 (0)