2023-07-05 08:03:02 -05: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 07:32:48 -05: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 18:23:30 -05:00
|
|
|
branches: [ master, 1.23.X ]
|
2023-02-03 00:10:10 -06:00
|
|
|
paths-ignore:
|
|
|
|
- '*.md'
|
2021-10-05 07:32:48 -05:00
|
|
|
pull_request:
|
2023-10-08 18:23:30 -05:00
|
|
|
branches: [ master, 1.23.X ]
|
2023-02-03 00:10:10 -06:00
|
|
|
paths-ignore:
|
|
|
|
- '*.md'
|
2021-10-05 07:32:48 -05:00
|
|
|
|
|
|
|
jobs:
|
2021-10-07 07:14:24 -05:00
|
|
|
auto-test:
|
2023-12-17 05:02:22 -06:00
|
|
|
needs: [ check-linters, e2e-test ]
|
2021-10-07 07:01:33 -05:00
|
|
|
runs-on: ${{ matrix.os }}
|
2022-05-01 05:25:52 -05:00
|
|
|
timeout-minutes: 15
|
2021-10-05 07:32:48 -05:00
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-06-28 08:04:38 -05:00
|
|
|
os: [macos-latest, ubuntu-latest, windows-latest, ARM64]
|
2024-03-27 18:30:33 -05:00
|
|
|
node: [ 18, 20.5 ]
|
2021-10-05 07:32:48 -05:00
|
|
|
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
|
|
|
|
|
|
|
|
steps:
|
2022-04-13 12:08:20 -05:00
|
|
|
- run: git config --global core.autocrlf false # Mainly for Windows
|
2023-12-04 04:19:18 -06:00
|
|
|
- uses: actions/checkout@v4
|
2021-10-05 07:32:48 -05:00
|
|
|
|
2022-04-25 19:03:47 -05:00
|
|
|
- name: Use Node.js ${{ matrix.node }}
|
2023-12-04 04:19:18 -06:00
|
|
|
uses: actions/setup-node@v4
|
2021-10-05 07:32:48 -05:00
|
|
|
with:
|
2022-04-25 19:03:47 -05:00
|
|
|
node-version: ${{ matrix.node }}
|
2024-03-27 18:30:33 -05:00
|
|
|
- run: npm install
|
|
|
|
- run: npm run build
|
|
|
|
- run: npm run test-backend
|
2021-10-05 07:42:15 -05:00
|
|
|
env:
|
|
|
|
HEADLESS_TEST: 1
|
2021-10-05 08:15:30 -05:00
|
|
|
JUST_FOR_TEST: ${{ secrets.JUST_FOR_TEST }}
|
2023-02-03 00:10:10 -06:00
|
|
|
|
2023-06-28 08:04:38 -05: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:
|
|
|
|
needs: [ check-linters ]
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
timeout-minutes: 15
|
2024-05-30 01:46:04 -05:00
|
|
|
if: ${{ github.repository == 'louislam/uptime-kuma' }}
|
2023-06-28 08:04:38 -05:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ ARMv7 ]
|
2024-03-27 18:30:33 -05:00
|
|
|
node: [ 18, 20 ]
|
2023-06-28 08:04:38 -05: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 04:19:18 -06:00
|
|
|
- uses: actions/checkout@v4
|
2023-06-28 08:04:38 -05:00
|
|
|
|
|
|
|
- name: Use Node.js ${{ matrix.node }}
|
2023-12-04 04:19:18 -06:00
|
|
|
uses: actions/setup-node@v4
|
2023-06-28 08:04:38 -05:00
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node }}
|
|
|
|
- run: npm ci --production
|
|
|
|
|
2022-04-25 18:57:49 -05:00
|
|
|
check-linters:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- run: git config --global core.autocrlf false # Mainly for Windows
|
2023-12-04 04:19:18 -06:00
|
|
|
- uses: actions/checkout@v4
|
2022-04-25 18:57:49 -05:00
|
|
|
|
2023-08-11 02:46:41 -05:00
|
|
|
- name: Use Node.js 20
|
2023-12-04 04:19:18 -06:00
|
|
|
uses: actions/setup-node@v4
|
2022-04-25 18:57:49 -05:00
|
|
|
with:
|
2023-08-11 02:46:41 -05:00
|
|
|
node-version: 20
|
2022-04-30 23:32:06 -05:00
|
|
|
- run: npm install
|
2023-12-04 04:19:18 -06:00
|
|
|
- run: npm run lint:prod
|
2022-06-16 04:28:17 -05:00
|
|
|
|
2023-12-17 05:02:22 -06:00
|
|
|
e2e-test:
|
2023-01-10 01:24:15 -06:00
|
|
|
needs: [ check-linters ]
|
2023-12-17 05:02:22 -06:00
|
|
|
runs-on: ARM64
|
2023-01-10 01:24:15 -06:00
|
|
|
steps:
|
|
|
|
- run: git config --global core.autocrlf false # Mainly for Windows
|
2023-12-04 04:19:18 -06:00
|
|
|
- uses: actions/checkout@v4
|
2023-01-10 01:24:15 -06:00
|
|
|
|
2023-12-17 05:02:22 -06:00
|
|
|
- name: Use Node.js 20
|
2023-12-04 04:19:18 -06:00
|
|
|
uses: actions/setup-node@v4
|
2023-01-10 01:24:15 -06:00
|
|
|
with:
|
2023-12-17 05:02:22 -06:00
|
|
|
node-version: 20
|
2023-01-10 01:24:15 -06:00
|
|
|
- run: npm install
|
2023-12-17 05:02:22 -06:00
|
|
|
- run: npx playwright install
|
2023-01-10 01:24:15 -06:00
|
|
|
- run: npm run build
|
2023-12-17 05:02:22 -06:00
|
|
|
- run: npm run test-e2e
|