0
0
mirror of https://github.com/louislam/uptime-kuma.git synced 2024-12-01 07:20:46 +01:00
uptime-kuma/.github/workflows/auto-test.yml

85 lines
2.2 KiB
YAML
Raw Normal View History

2021-10-05 14:32:48 +02:00
# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Auto Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
2021-10-07 14:14:24 +02:00
auto-test:
2022-05-01 06:23:28 +02:00
needs: [ check-linters ]
runs-on: ${{ matrix.os }}
timeout-minutes: 15
2021-10-05 14:32:48 +02:00
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
node: [ 14, 16, 17, 18 ]
2021-10-05 14:32:48 +02:00
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
2022-04-13 19:08:20 +02:00
- run: git config --global core.autocrlf false # Mainly for Windows
2022-04-23 15:47:57 +02:00
- uses: actions/checkout@v3
2021-10-05 14:32:48 +02:00
2022-04-26 02:03:47 +02:00
- name: Use Node.js ${{ matrix.node }}
2022-04-26 01:57:49 +02:00
uses: actions/setup-node@v3
2021-10-05 14:32:48 +02:00
with:
2022-04-26 02:03:47 +02:00
node-version: ${{ matrix.node }}
2021-10-05 14:32:48 +02:00
cache: 'npm'
- run: npm install
2021-10-05 14:32:48 +02:00
- run: npm run build
- run: npm test
2021-10-05 14:42:15 +02:00
env:
HEADLESS_TEST: 1
2021-10-05 15:15:30 +02:00
JUST_FOR_TEST: ${{ secrets.JUST_FOR_TEST }}
2022-04-26 01:57:49 +02:00
check-linters:
runs-on: ubuntu-latest
steps:
- run: git config --global core.autocrlf false # Mainly for Windows
- uses: actions/checkout@v3
- name: Use Node.js 14
2022-04-26 01:57:49 +02:00
uses: actions/setup-node@v3
with:
node-version: 14
2022-04-26 01:57:49 +02:00
cache: 'npm'
- run: npm install
2022-04-26 01:57:49 +02:00
- run: npm run lint
2022-06-16 11:28:17 +02:00
e2e-tests:
needs: [ check-linters ]
runs-on: ubuntu-latest
steps:
- run: git config --global core.autocrlf false # Mainly for Windows
- uses: actions/checkout@v3
- name: Use Node.js 14
uses: actions/setup-node@v3
with:
node-version: 14
cache: 'npm'
- run: npm install
- run: npm run build
- run: npm run cy:test
2023-01-10 08:24:15 +01:00
frontend-unit-tests:
needs: [ check-linters ]
runs-on: ubuntu-latest
steps:
- run: git config --global core.autocrlf false # Mainly for Windows
- uses: actions/checkout@v3
- name: Use Node.js 14
uses: actions/setup-node@v3
with:
node-version: 14
cache: 'npm'
- run: npm install
- run: npm run build
- run: cy:run:unit