-
-
Notifications
You must be signed in to change notification settings - Fork 5
49 lines (38 loc) · 1.27 KB
/
CI.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
checkout_and_test:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- node-version: 18.x
- node-version: latest
steps:
- name: Checkout code from ${{ github.repository }}
uses: actions/checkout@v3
- name: Install
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install yarn
run: corepack enable && corepack prepare yarn@stable --activate
- name: Wasm pack build modules
run: cd kayle_innate && wasm-pack build --release --target nodejs && cd ../
- name: Install and build locales
run: yarn --no-immutable && yarn build && npx playwright install --with-deps chromium
- name: Run Playwright kayle.js
run: cd ./kayle && yarn test:playwright && yarn test:playwright:axe
- name: Run Puppeteer kayle.js
run: cd ./kayle && yarn test:puppeteer && yarn test:puppeteer:axe
- name: Run Puppeteer [wasm] links handle
run: cd ./kayle && yarn test:puppeteer:wasm