generated from staticwebdev/react-basic
-
Notifications
You must be signed in to change notification settings - Fork 0
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
0 parents
commit 47de1a1
Showing
20 changed files
with
33,932 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,94 @@ | ||
|
||
# This is a basic workflow to help you get started with Actions | ||
|
||
name: Playwright tests | ||
|
||
# Controls when the workflow will run | ||
on: | ||
# Triggers the workflow on push or pull request events but only for the "main" branch | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
schedule: | ||
# nightly | ||
- cron: '0 0 * * *' | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
test: | ||
# Runs on an ubuntu runner | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [14.x, 16.x, 18.x] | ||
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
- name: Install dependencies | ||
run: npm ci | ||
- name: Install Playwright | ||
run: npx playwright install --with-deps | ||
- name: Build production build | ||
run: npm run build | ||
- name: Run your tests | ||
run: npm run playwright_test | ||
- name: Get current date | ||
id: date | ||
run: echo "::set-output name=date::$(date +'%Y-%m-%d')" | ||
- name: Upload HTML report as Artifact | ||
uses: actions/upload-artifact@v2 | ||
env: | ||
TAG_NAME: test-report-${{ steps.date.outputs.date }} | ||
if: always() | ||
with: | ||
name: onDemand | ||
path: pw-report/ | ||
|
||
storeReports: | ||
name: Store reports | ||
if: ${{ always() }} | ||
needs: test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Download all workflow run artifacts | ||
uses: actions/download-artifact@v3 | ||
id: download | ||
- name: Publish to external repo | ||
if: always() | ||
uses: peaceiris/actions-gh-pages@v3.7.3 | ||
with: | ||
external_repository: mspnp/intern-js-pipeline | ||
publish_branch: gh-pages | ||
personal_token: ${{ secrets.PAT_TOKEN }} | ||
publish_dir: ${{steps.download.outputs.download-path}} | ||
destination_dir: test-reports/${{ github.repository }} | ||
keep_files: true | ||
user_name: "github-actions[bot]" | ||
user_email: "github-actions[bot]@users.noreply.github.com" | ||
|
||
notify-dashboard: | ||
name: Notify Dashboard | ||
if: ${{ always() }} | ||
needs: [test, storeReports] | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-latest | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v3 | ||
|
||
# Runs a single command using the runners shell | ||
- name: Notify docusaurus repo | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }} | ||
run: | | ||
gh api repos/mspnp/intern-js-pipeline/dispatches \ | ||
--raw-field event_type=rebuild-site |
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,84 @@ | ||
name: Scheduled Playwright tests | ||
|
||
# Controls when the workflow will run | ||
on: | ||
# Triggers the workflow nightly | ||
schedule: | ||
# nightly | ||
- cron: '0 0 * * *' | ||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
test: | ||
# Runs on an ubuntu runner | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [14.x, 16.x, 18.x] | ||
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
- name: Install dependencies | ||
run: npm ci | ||
- name: Install Playwright | ||
run: npx playwright install --with-deps | ||
- name: Build production build | ||
run: npm run build | ||
- name: Run your tests | ||
run: npm run playwright_test | ||
- name: Get current date | ||
id: date | ||
run: echo "::set-output name=date::$(date +'%Y-%m-%d')" | ||
- name: Upload HTML report as Artifact | ||
uses: actions/upload-artifact@v2 | ||
env: | ||
TAG_NAME: test-report-${{ steps.date.outputs.date }} | ||
if: always() | ||
with: | ||
name: ${{ steps.date.outputs.date }} | ||
path: pw-report/ | ||
|
||
storeReports: | ||
name: Store reports | ||
if: ${{ always() }} | ||
needs: test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Download all workflow run artifacts | ||
uses: actions/download-artifact@v3 | ||
id: download | ||
- name: Publish to external repo | ||
if: always() | ||
uses: peaceiris/actions-gh-pages@v3.7.3 | ||
with: | ||
external_repository: mspnp/intern-js-pipeline | ||
publish_branch: gh-pages | ||
personal_token: ${{ secrets.PAT_TOKEN }} | ||
publish_dir: ${{steps.download.outputs.download-path}} | ||
destination_dir: test-reports/${{ github.repository }} | ||
keep_files: true | ||
user_name: "github-actions[bot]" | ||
user_email: "github-actions[bot]@users.noreply.github.com" | ||
|
||
notify-dashboard: | ||
name: Notify Dashboard | ||
if: ${{ always() }} | ||
needs: [test, storeReports] | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-latest | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v3 | ||
|
||
# Runs a single command using the runners shell | ||
- name: Notify dashboard repo | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }} | ||
run: | | ||
gh api repos/mspnp/intern-js-pipeline/dispatches \ | ||
--raw-field event_type=rebuild-site |
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,26 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
|
||
# testing | ||
/coverage | ||
|
||
# production | ||
/build | ||
|
||
# misc | ||
.DS_Store | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
/test-results/ | ||
/playwright-report/ | ||
/playwright/.cache/ |
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,5 @@ | ||
# React basic | ||
|
||
[Azure Static Web Apps](https://docs.microsoft.com/azure/static-web-apps/overview) allows you to easily build [React](https://reactjs.org/) apps in minutes. Use this repo with the [React quickstart](https://docs.microsoft.com/azure/static-web-apps/getting-started?tabs=react) to build and customize a new static site. | ||
|
||
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). |
Oops, something went wrong.