-
Notifications
You must be signed in to change notification settings - Fork 2
36 lines (31 loc) · 1.26 KB
/
node.yml
File metadata and controls
36 lines (31 loc) · 1.26 KB
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
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
node-version:
- "10.x" # Not used in apps, but keeping for legacy support
- "12.14.1" # Used in Mapeo Desktop (via Electron@9.2.1)
- "12.16.3" # Used in Mapeo Mobile (via nodejs-mobile@0.3.1 and nodejs-mobile-react-native@0.6.1). Also in electron@10
# "12.19.0" Currently fails - used in current version of nodejs-mobile@0.3.2 (nodejs-mobile-react-native@0.6.2)
- "12.18.3" # Used in current electron@11
- "14.x" # Test latest LTS Node for forwards compat
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm test