-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
101 changed files
with
14,240 additions
and
2,791 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,5 @@ | |
**/lwc/**/*.json | ||
**/lwc/**/*.svg | ||
**/lwc/**/*.xml | ||
**/uuid.js | ||
.sfdx |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
# This is a basic workflow to help you get started with Actions | ||
|
||
name: CI | ||
|
||
# Controls when the action will run. Triggers the workflow on push or pull request | ||
# events but only for the master branch | ||
on: | ||
pull_request: | ||
branches: [master] | ||
|
||
jobs: | ||
formatting-and-linting: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Checkout the code in the pull request | ||
- name: 'Checkout source code' | ||
uses: actions/checkout@v2 | ||
|
||
# Cache node_modules to speed up the process | ||
- name: Restore node_modules cache | ||
id: cache-npm | ||
uses: actions/cache@v1 | ||
with: | ||
path: node_modules | ||
key: npm-${{ hashFiles('**/package-lock.json') }} | ||
restore-keys: | | ||
npm-${{ env.cache-name }}- | ||
npm- | ||
# Install npm dependencies for Prettier and Jest | ||
- name: 'Install npm dependencies' | ||
if: steps.cache-npm.outputs.cache-hit != 'true' | ||
run: npm install | ||
|
||
# Prettier formatting | ||
- name: 'Code formatting verification with Prettier' | ||
run: npm run prettier:verify | ||
|
||
# ESlint | ||
- name: 'Lint Lightning Web Components' | ||
run: npm run lint:lwc | ||
|
||
# Install PMD | ||
- name: Install PMD | ||
run: wget https://github.com/pmd/pmd/releases/download/pmd_releases%2F6.22.0/pmd-bin-6.22.0.zip && unzip pmd-bin-6.22.0.zip | ||
|
||
# Execute PMD | ||
- name: Execute PMD | ||
run: pmd-bin-6.22.0/bin/run.sh pmd -minimumpriority 2 -d force-app -R apex-ruleset.xml -f text -l apex | ||
|
||
scratch-org-test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Install Salesforce CLI | ||
- name: Install Salesforce CLI | ||
run: | | ||
wget https://developer.salesforce.com/media/salesforce-cli/sfdx-linux-amd64.tar.xz | ||
mkdir sfdx-cli | ||
tar xJf sfdx-linux-amd64.tar.xz -C sfdx-cli --strip-components 1 | ||
./sfdx-cli/install | ||
# Cache node_modules to speed up the process | ||
- name: Restore node_modules cache | ||
id: cache-npm | ||
uses: actions/cache@v1 | ||
with: | ||
path: node_modules | ||
key: npm-${{ hashFiles('**/package-lock.json') }} | ||
restore-keys: | | ||
npm-${{ env.cache-name }}- | ||
npm- | ||
# Install npm dependencies for Prettier and Jest | ||
- name: 'Install npm dependencies' | ||
if: steps.cache-npm.outputs.cache-hit != 'true' | ||
run: npm install | ||
|
||
# Checkout the code in the pull request | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
# Store secret for dev hub | ||
- name: 'Populate auth file with DEVHUB_SFDX_URL secret' | ||
shell: bash | ||
run: 'echo ${{ secrets.DEVHUB_SFDX_URL}} > ./DEVHUB_SFDX_URL.txt' | ||
|
||
# Authenticate dev hub | ||
- name: 'Authenticate Dev Hub' | ||
run: 'sfdx force:auth:sfdxurl:store -f ./DEVHUB_SFDX_URL.txt -a devhub -d' | ||
|
||
# Create scratch org | ||
- name: 'Create scratch org' | ||
run: 'sfdx force:org:create -f config/project-scratch-def.json -a scratch-org -s -d 1' | ||
|
||
# Deploy source to scratch org | ||
- name: 'Push source to scratch org' | ||
run: 'sfdx force:source:push' | ||
|
||
# Run Apex tests in scratch org | ||
#- name: 'Run Apex tests' | ||
# run: 'sfdx force:apex:test:run -c -r human -d ./tests/apex -t lwcc -w 20' | ||
|
||
# Unit tests | ||
#- name: 'Unit test Lightning Web Components' | ||
# run: npm run test:unit:coverage | ||
|
||
# Housekeeping | ||
- name: 'Delete scratch org' | ||
if: always() | ||
run: 'sfdx force:org:delete -p -u scratch-org' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,4 +83,6 @@ mm.log | |
*.sfuo | ||
.tern-project | ||
TestCache.xml | ||
TestsResultsCache.xml | ||
TestsResultsCache.xml | ||
|
||
tests/ |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
{ | ||
"trailingComma": "none", | ||
"singleQuote": true, | ||
"tabWidth": 2, | ||
"overrides": [ | ||
{ | ||
"files": "**/lwc/**/*.html", | ||
"options": { "parser": "lwc" } | ||
}, | ||
{ | ||
"files": "*.{cmp,page,component}", | ||
"options": { "parser": "html" } | ||
} | ||
{ | ||
"files": "**/lwc/**/*.html", | ||
"options": { "parser": "lwc" } | ||
}, | ||
{ | ||
"files": "*.{cmp,page,component}", | ||
"options": { "parser": "html" } | ||
} | ||
] | ||
} | ||
} |
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
Oops, something went wrong.