2023-07-05 06:03:02 -07: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 05:32:48 -07:00
|
|
|
# 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 ]
|
2023-02-02 22:10:10 -08:00
|
|
|
paths-ignore:
|
|
|
|
- '*.md'
|
2021-10-05 05:32:48 -07:00
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
2023-02-02 22:10:10 -08:00
|
|
|
paths-ignore:
|
|
|
|
- '*.md'
|
2021-10-05 05:32:48 -07:00
|
|
|
|
|
|
|
jobs:
|
2021-10-07 05:14:24 -07:00
|
|
|
auto-test:
|
2022-04-30 21:23:28 -07:00
|
|
|
needs: [ check-linters ]
|
2021-10-07 05:01:33 -07:00
|
|
|
runs-on: ${{ matrix.os }}
|
2022-05-01 03:25:52 -07:00
|
|
|
timeout-minutes: 15
|
2021-10-05 05:32:48 -07:00
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-06-28 06:04:38 -07:00
|
|
|
os: [macos-latest, ubuntu-latest, windows-latest, ARM64]
|
2023-07-30 04:02:36 -07:00
|
|
|
node: [ 14, 20 ]
|
2021-10-05 05:32:48 -07:00
|
|
|
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
|
|
|
|
|
|
|
|
steps:
|
2022-04-13 10:08:20 -07:00
|
|
|
- run: git config --global core.autocrlf false # Mainly for Windows
|
2022-04-23 06:47:57 -07:00
|
|
|
- uses: actions/checkout@v3
|
2021-10-05 05:32:48 -07:00
|
|
|
|
2022-04-25 17:03:47 -07:00
|
|
|
- name: Use Node.js ${{ matrix.node }}
|
2022-04-25 16:57:49 -07:00
|
|
|
uses: actions/setup-node@v3
|
2021-10-05 05:32:48 -07:00
|
|
|
with:
|
2022-04-25 17:03:47 -07:00
|
|
|
node-version: ${{ matrix.node }}
|
2023-06-28 06:04:38 -07:00
|
|
|
- run: npm install npm@latest -g
|
2022-04-30 21:32:06 -07:00
|
|
|
- run: npm install
|
2021-10-05 05:32:48 -07:00
|
|
|
- run: npm run build
|
|
|
|
- run: npm test
|
2021-10-05 05:42:15 -07:00
|
|
|
env:
|
|
|
|
HEADLESS_TEST: 1
|
2021-10-05 06:15:30 -07:00
|
|
|
JUST_FOR_TEST: ${{ secrets.JUST_FOR_TEST }}
|
2023-02-02 22:10:10 -08:00
|
|
|
|
2023-06-28 06:04:38 -07: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 ]
|
2023-07-30 04:02:36 -07:00
|
|
|
node: [ 14.21.3, 20.5.0 ]
|
2023-06-28 06:04:38 -07: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@v3
|
|
|
|
|
|
|
|
- name: Use Node.js ${{ matrix.node }}
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node }}
|
|
|
|
- run: npm install npm@latest -g
|
|
|
|
- run: npm ci --production
|
|
|
|
|
2022-04-25 16:57:49 -07:00
|
|
|
check-linters:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- run: git config --global core.autocrlf false # Mainly for Windows
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
2023-08-11 00:46:41 -07:00
|
|
|
- name: Use Node.js 20
|
2022-04-25 16:57:49 -07:00
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
2023-08-11 00:46:41 -07:00
|
|
|
node-version: 20
|
2022-04-30 21:32:06 -07:00
|
|
|
- run: npm install
|
2022-04-25 16:57:49 -07:00
|
|
|
- run: npm run lint
|
2022-06-16 02:28:17 -07:00
|
|
|
|
2023-08-11 07:17:31 -07:00
|
|
|
# TODO: Temporarily disable, as it cannot pass the test in 2.0.0 yet
|
|
|
|
# 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
|
|
|
|
# - run: npm install
|
|
|
|
# - run: npm run build
|
|
|
|
# - run: npm run cy:test
|
2023-01-09 23:24:15 -08: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
|
|
|
|
- run: npm install
|
|
|
|
- run: npm run build
|
2023-01-09 23:43:39 -08:00
|
|
|
- run: npm run cy:run:unit
|