Initial project setup - add documents and build workflow #8
Workflow file for this run
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: | |
pull_request: | |
paths: | |
- 'examples/**' | |
- 'ext/**' | |
- 'npm/**' | |
- '.github/workflows/build-ci.yml' | |
- '!**/*.md' | |
push: | |
branches: | |
- main | |
paths: | |
- 'examples/**' | |
- 'ext/**' | |
- 'npm/**' | |
- '.github/workflows/build-ci.yml' | |
- '!**/*.md' | |
permissions: | |
contents: read | |
jobs: | |
verify: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.2.0 | |
- name: Setup Node 20 | |
uses: actions/setup-node@v4.0.4 | |
with: | |
node-version: 20.x | |
cache: yarn | |
cache-dependency-path: yarn.lock | |
- name: Install Python 3 | |
uses: actions/setup-python@v5.2.0 | |
with: | |
python-version: '3.11' | |
- name: Install and Build | |
shell: bash | |
run: | | |
yarn global add node-gyp | |
yarn --skip-integrity-check --network-timeout 100000 | |
env: | |
NODE_OPTIONS: --max_old_space_size=4096 | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build example applications | |
run: | | |
yarn browser build | |
yarn electron build | |
env: | |
NODE_OPTIONS: --max_old_space_size=4096 | |
- name: Lint with ESLint | |
run: yarn lint | |
- name: Run tests | |
run: yarn test |