-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1032 from prettier-solidity/slang
Slang
- Loading branch information
Showing
492 changed files
with
15,285 additions
and
660 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 |
---|---|---|
@@ -1,15 +1,11 @@ | ||
{ | ||
"check-coverage": true, | ||
"branches": 99, | ||
"lines": 100, | ||
"functions": 100, | ||
"statements": 100, | ||
"exclude": ["/node_modules/", "/src/prettier-comments/"], | ||
"include": [ | ||
"src/**/*.js", | ||
"!src/prettier-comments/**/*.js", | ||
"!src/common/backward-compatibility.js" | ||
], | ||
"branches": 90, | ||
"lines": 90, | ||
"functions": 90, | ||
"statements": 90, | ||
"exclude": ["/node_modules/"], | ||
"include": ["src/**/*.ts", "!src/slang-utils/backward-compatibility.ts"], | ||
"reporter": ["lcov", "text"], | ||
"temp-dir": "./coverage/" | ||
} |
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
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 |
---|---|---|
|
@@ -23,23 +23,23 @@ jobs: | |
- name: lint | ||
run: npm run lint | ||
|
||
test_bundle: | ||
name: Test production | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
cache: 'npm' | ||
- name: Install | ||
run: npm install | ||
- name: Build | ||
run: npm run build | ||
- name: Build test app | ||
run: npm run build:test | ||
- name: Run tests | ||
run: npm run test:standalone | ||
# test_bundle: | ||
# name: Test production | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@v3 | ||
# - uses: actions/setup-node@v3 | ||
# with: | ||
# node-version: 16 | ||
# cache: 'npm' | ||
# - name: Install | ||
# run: npm install | ||
# - name: Build | ||
# run: npm run build | ||
# - name: Build test app | ||
# run: npm run build:test | ||
# - name: Run tests | ||
# run: npm run test:standalone | ||
|
||
test_prettier_v2: | ||
name: Prettier V2 | ||
|
@@ -56,10 +56,10 @@ jobs: | |
run: npm run build | ||
- name: Downgrade Prettier to V2 | ||
run: npm install [email protected] | ||
- name: Build test app | ||
run: npm run build:test | ||
- name: Run standalone tests | ||
run: npm run test:standalone tests/format tests/integration tests/unit/prettier-version | ||
# - name: Build test app | ||
# run: npm run build:test | ||
# - name: Run standalone tests | ||
# run: npm run test:standalone | ||
|
||
test_linux: | ||
name: Test on Linux with Node ${{ matrix.node }} | ||
|
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
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.