-
-
Notifications
You must be signed in to change notification settings - Fork 27k
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
174 changed files
with
54,915 additions
and
23,501 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,6 +1,4 @@ | ||
node_modules/ | ||
build | ||
my-app* | ||
packages/react-scripts/template | ||
packages/react-scripts/fixtures | ||
fixtures/ | ||
build/ | ||
test/fixtures/webpack-message-formatting/src/AppBabel.js | ||
packages/react-error-overlay/lib/ |
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,2 +1,2 @@ | ||
packages/ @ianschmitz @iansu @mrmckeb @petetnt | ||
docusaurus/ @ianschmitz @iansu @mrmckeb | ||
packages/ @iansu @mrmckeb | ||
docusaurus/ @iansu @mrmckeb |
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,19 @@ | ||
name: Build | ||
|
||
on: [push] | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: '14' | ||
cache: 'npm' | ||
- name: Install npm@8 | ||
run: npm i -g npm@8 | ||
- name: Install | ||
run: yarn --no-progress --non-interactive --no-lockfile | ||
run: npm ci --prefer-offline | ||
- name: Build | ||
run: yarn build | ||
run: npm run build |
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,32 @@ | ||
name: Integration Tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
job: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: ['ubuntu-latest', 'macos-latest', 'windows-latest'] | ||
node: ['14', '16'] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup node | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
cache: 'npm' | ||
- name: Install npm@8 | ||
run: npm i -g npm@8 | ||
- name: Install yarn | ||
run: npm i -g yarn | ||
- name: Install packages | ||
run: npm ci --prefer-offline | ||
- name: Run integration tests | ||
run: npm run test:integration |
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,25 @@ | ||
name: Lint | ||
|
||
on: [push] | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: '14' | ||
cache: 'npm' | ||
- name: Install npm@8 | ||
run: npm i -g npm@8 | ||
- name: Install | ||
run: yarn --no-progress --non-interactive --no-lockfile | ||
run: npm ci --prefer-offline | ||
- name: Build | ||
run: npm run build | ||
- name: Alex | ||
run: yarn alex | ||
run: npm run alex | ||
- name: Prettier | ||
run: npm run prettier -- --list-different | ||
- name: Eslint | ||
run: npm run eslint -- --max-warnings 0 |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
build/ | ||
package-lock.json | ||
test/fixtures/webpack-message-formatting/src/AppBabel.js | ||
test/fixtures/webpack-message-formatting/src/AppCss.css | ||
packages/react-error-overlay/fixtures/bundle* | ||
packages/react-error-overlay/fixtures/inline* | ||
packages/react-error-overlay/fixtures/junk* | ||
packages/react-error-overlay/lib/ | ||
packages/react-error-overlay/coverage/ |
Oops, something went wrong.