Skip to content

Initial project setup - add documents and build workflow #2

Initial project setup - add documents and build workflow

Initial project setup - add documents and build workflow #2

Workflow file for this run

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/[email protected]
- name: Setup Node 20
uses: actions/[email protected]
with:
node-version: 20.x
cache: yarn
cache-dependency-path: yarn.lock
- name: Install dependencies
run: yarn install --ignore-scripts
- name: Build
run: yarn build
- name: Lint with ESLint
run: yarn lint
- name: Run tests
run: yarn test