2023-07-05 13:03:02 +00:00
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2021-10-05 12:32:48 +00:00
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name : Auto Test
on :
push :
2023-10-08 23:23:30 +00:00
branches : [ master, 1.23.X ]
2023-02-03 06:10:10 +00:00
paths-ignore :
- '*.md'
2021-10-05 12:32:48 +00:00
pull_request :
2023-10-08 23:23:30 +00:00
branches : [ master, 1.23.X ]
2023-02-03 06:10:10 +00:00
paths-ignore :
- '*.md'
2021-10-05 12:32:48 +00:00
jobs :
2024-11-21 10:36:29 +00:00
unit-test :
2024-10-04 02:05:18 +00:00
needs : [ check-linters ]
2021-10-07 12:01:33 +00:00
runs-on : ${{ matrix.os }}
2022-05-01 10:25:52 +00:00
timeout-minutes : 15
2021-10-05 12:32:48 +00:00
strategy :
matrix :
2023-06-28 13:04:38 +00:00
os : [ macos-latest, ubuntu-latest, windows-latest, ARM64]
2024-10-04 02:20:22 +00:00
node : [ 18 , 20 ]
2021-10-05 12:32:48 +00:00
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps :
2022-04-13 17:08:20 +00:00
- run : git config --global core.autocrlf false # Mainly for Windows
2023-12-04 10:19:18 +00:00
- uses : actions/checkout@v4
2021-10-05 12:32:48 +00:00
2022-04-26 00:03:47 +00:00
- name : Use Node.js ${{ matrix.node }}
2023-12-04 10:19:18 +00:00
uses : actions/setup-node@v4
2021-10-05 12:32:48 +00:00
with :
2022-04-26 00:03:47 +00:00
node-version : ${{ matrix.node }}
2024-03-27 23:30:33 +00:00
- run : npm install
- run : npm run build
- run : npm run test-backend
2021-10-05 12:42:15 +00:00
env :
HEADLESS_TEST : 1
2021-10-05 13:15:30 +00:00
JUST_FOR_TEST : ${{ secrets.JUST_FOR_TEST }}
2023-02-03 06:10:10 +00:00
2023-06-28 13:04:38 +00:00
# As a lot of dev dependencies are not supported on ARMv7, we have to test it separately and just test if `npm ci --production` works
armv7-simple-test :
2024-10-04 02:05:18 +00:00
needs : [ ]
2023-06-28 13:04:38 +00:00
runs-on : ${{ matrix.os }}
timeout-minutes : 15
2024-05-30 06:46:04 +00:00
if : ${{ github.repository == 'louislam/uptime-kuma' }}
2023-06-28 13:04:38 +00:00
strategy :
matrix :
os : [ ARMv7 ]
2024-03-27 23:30:33 +00:00
node : [ 18 , 20 ]
2023-06-28 13:04:38 +00:00
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps :
- run : git config --global core.autocrlf false # Mainly for Windows
2023-12-04 10:19:18 +00:00
- uses : actions/checkout@v4
2023-06-28 13:04:38 +00:00
- name : Use Node.js ${{ matrix.node }}
2023-12-04 10:19:18 +00:00
uses : actions/setup-node@v4
2023-06-28 13:04:38 +00:00
with :
node-version : ${{ matrix.node }}
- run : npm ci --production
2022-04-25 23:57:49 +00:00
check-linters :
runs-on : ubuntu-latest
steps :
- run : git config --global core.autocrlf false # Mainly for Windows
2023-12-04 10:19:18 +00:00
- uses : actions/checkout@v4
2022-04-25 23:57:49 +00:00
2023-08-11 07:46:41 +00:00
- name : Use Node.js 20
2023-12-04 10:19:18 +00:00
uses : actions/setup-node@v4
2022-04-25 23:57:49 +00:00
with :
2023-08-11 07:46:41 +00:00
node-version : 20
2022-05-01 04:32:06 +00:00
- run : npm install
2023-12-04 10:19:18 +00:00
- run : npm run lint:prod
2022-06-16 09:28:17 +00:00
2023-12-17 11:02:22 +00:00
e2e-test :
2024-10-04 02:05:18 +00:00
needs : [ ]
2023-12-17 11:02:22 +00:00
runs-on : ARM64
2023-01-10 07:24:15 +00:00
steps :
- run : git config --global core.autocrlf false # Mainly for Windows
2023-12-04 10:19:18 +00:00
- uses : actions/checkout@v4
2023-01-10 07:24:15 +00:00
2023-12-17 11:02:22 +00:00
- name : Use Node.js 20
2023-12-04 10:19:18 +00:00
uses : actions/setup-node@v4
2023-01-10 07:24:15 +00:00
with :
2023-12-17 11:02:22 +00:00
node-version : 20
2023-01-10 07:24:15 +00:00
- run : npm install
2023-12-17 11:02:22 +00:00
- run : npx playwright install
2023-01-10 07:24:15 +00:00
- run : npm run build
2023-12-17 11:02:22 +00:00
- run : npm run test-e2e
2024-11-21 10:36:29 +00:00
post-test :
needs : [ unit-test, e2e-test]
if : always() && github.event_name == 'pull_request'
runs-on : ubuntu-latest
permissions :
pull-requests : write
steps :
- name : Download test results
uses : actions/download-artifact@v3
with :
path : artifacts
- name : Process test results
id : test-results
run : |
echo "::set-output name=unit_test::$([ "${{ needs.unit-test.result }}" = "success" ] && echo "✅" || echo "❌")"
echo "::set-output name=e2e_test::$([ "${{ needs.e2e-test.result }}" = "success" ] && echo "✅" || echo "❌")"
# Get coverage info if available
COVERAGE=""
if [ -f "artifacts/test-results-ubuntu-latest-node-20/coverage/coverage-summary.json" ]; then
COVERAGE=$(cat artifacts/test-results-ubuntu-latest-node-20/coverage/coverage-summary.json | jq -r '.total.lines.pct')
fi
echo "::set-output name=coverage::$COVERAGE"
- name : Create comment
uses : actions/github-script@v7
with :
github-token : ${{ secrets.GITHUB_TOKEN }}
script : |
const unitTest = "${{ steps.test-results.outputs.unit_test }}";
const e2eTest = "${{ steps.test-results.outputs.e2e_test }}";
const coverage = "${{ steps.test-results.outputs.coverage }}";
const comment = `## Test Results
| Test Type | Status |
|-----------|--------|
| Unit Tests | ${unitTest} |
| E2E Tests | ${e2eTest} |
${coverage ? `| Coverage | ${coverage}% |` : ''}
${unitTest === '❌' || e2eTest === '❌' ? `
### Failed Tests
Please check the [Actions tab](${process.env.GITHUB_SERVER_URL}/${process.env.GITHUB_REPOSITORY}/actions/runs/${process.env.GITHUB_RUN_ID}) for detailed logs.
` : '' }
### Artifacts
- [ Test Results](${process.env.GITHUB_SERVER_URL}/${process.env.GITHUB_REPOSITORY}/actions/runs/${process.env.GITHUB_RUN_ID})
- [ Playwright Report](${process.env.GITHUB_SERVER_URL}/${process.env.GITHUB_REPOSITORY}/actions/runs/${process.env.GITHUB_RUN_ID})
`;
const { data: comments } = await github.rest.issues.listComments({
owner : context.repo.owner,
repo : context.repo.repo,
issue_number : context.issue.number,
});
const botComment = comments.find(comment =>
comment.user.type === 'Bot' &&
comment.body.includes('Test Results ')
);
if (botComment) {
await github.rest.issues.updateComment({
owner : context.repo.owner,
repo : context.repo.repo,
comment_id : botComment.id,
body : comment
});
} else {
await github.rest.issues.createComment({
owner : context.repo.owner,
repo : context.repo.repo,
issue_number : context.issue.number,
body : comment
});
}
- name : Check test results
if : always()
run : |
if [ "${{ needs.unit-test.result }}" != "success" ] || [ "${{ needs.e2e-test.result }}" != "success" ]; then
echo "Tests failed!"
exit 1
fi