quickjs 2024-01-13 #149
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
detectonly: | |
name: Detect use of .only | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Detect use of .only | |
run: | | |
grep -rq --include '*.spec.js' \.only\( . && echo 'You have .only() in your tests!' && exit 1 | |
exit 0 | |
webtestrunner: | |
name: Web Test Runner | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Web Test Runner | |
run: | | |
wget https://bellard.org/quickjs/quickjs-2024-01-13.tar.xz | |
tar -xf quickjs-2024-01-13.tar.xz | |
rm quickjs-2024-01-13.tar.xz | |
git clone https://github.com/emscripten-core/emsdk.git | |
cd emsdk | |
./emsdk install latest | |
./emsdk activate latest | |
cd .. | |
npm i -g wasm-opt | |
(cd wasmlib && source ../emsdk/emsdk_env.sh && ./build.sh) | |
cd web | |
yarn install | |
yarn playwright install | |
sudo yarn playwright install-deps | |
yarn createdevaccount | |
yarn test | |
distbundle: | |
name: Dist bundle | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Chrome headless | |
run: | | |
cd web | |
yarn install | |
yarn dist |