uptime-kuma/.github/workflows/auto-test.yml

96 lines
2.6 KiB
YAML
Raw Normal View History

# 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 ]
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 ]
paths-ignore:
- '*.md'
2021-10-05 12:32:48 +00:00
jobs:
2021-10-07 12:14:24 +00:00
auto-test:
needs: [ check-linters, e2e-test ]
runs-on: ${{ matrix.os }}
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]
2023-09-06 13:34:43 +00:00
node: [ 14, 20.5 ]
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
- 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 }}
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 }}
2023-09-01 09:30:09 +00:00
- run: npm install npm@9 -g
- run: npm install
2021-10-05 12:32:48 +00:00
- 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-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:
needs: [ check-linters ]
runs-on: ${{ matrix.os }}
timeout-minutes: 15
strategy:
matrix:
os: [ ARMv7 ]
node: [ 14, 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
- uses: actions/checkout@v4
2023-06-28 13:04:38 +00:00
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
2023-06-28 13:04:38 +00:00
with:
node-version: ${{ matrix.node }}
2023-09-01 09:30:09 +00:00
- run: npm install npm@9 -g
2023-06-28 13:04:38 +00:00
- 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
- uses: actions/checkout@v4
2022-04-25 23:57:49 +00:00
- name: Use Node.js 20
uses: actions/setup-node@v4
2022-04-25 23:57:49 +00:00
with:
node-version: 20
- run: npm install
- run: npm run lint:prod
2022-06-16 09:28:17 +00:00
e2e-test:
2023-01-10 07:24:15 +00:00
needs: [ check-linters ]
runs-on: ARM64
2023-01-10 07:24:15 +00:00
steps:
- run: git config --global core.autocrlf false # Mainly for Windows
- uses: actions/checkout@v4
2023-01-10 07:24:15 +00:00
- name: Use Node.js 20
uses: actions/setup-node@v4
2023-01-10 07:24:15 +00:00
with:
node-version: 20
2023-01-10 07:24:15 +00:00
- run: npm install
- run: npx playwright install
2023-01-10 07:24:15 +00:00
- run: npm run build
- run: npm run test-e2e