mirror of
https://github.com/mourner/flatbush.git
synced 2025-12-08 17:36:26 +00:00
29 lines
439 B
YAML
29 lines
439 B
YAML
name: Node
|
|
|
|
on:
|
|
push:
|
|
branches: ['*']
|
|
pull_request:
|
|
branches: [master]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 14
|
|
|
|
- name: Install dependencies
|
|
run: npm install
|
|
|
|
- name: Build the bundle
|
|
run: npm run build
|
|
|
|
- name: Run tests
|
|
run: npm test
|