setup-android/.github/workflows/build-test.yml

32 lines
469 B
YAML
Raw Normal View History

2020-08-11 09:01:48 -07:00
name: Build & Test
2020-07-14 08:41:00 -07:00
on:
pull_request:
paths-ignore:
- '**.md'
push:
branches:
2020-08-11 09:01:48 -07:00
- main
2020-07-14 08:41:00 -07:00
- releases/*
paths-ignore:
- '**.md'
jobs:
build:
2020-08-11 09:01:48 -07:00
runs-on: ubuntu-latest
2020-07-14 08:41:00 -07:00
steps:
- uses: actions/checkout@v2
2020-07-25 09:49:54 -07:00
2020-07-14 08:41:00 -07:00
- name: Setup node 12
uses: actions/setup-node@v2.1.1
2020-07-14 08:41:00 -07:00
with:
node-version: 12.x
2020-07-25 09:49:54 -07:00
2020-07-14 08:41:00 -07:00
- run: npm ci
2020-07-25 09:49:54 -07:00
2020-07-14 08:41:00 -07:00
- run: npm run build
2020-07-25 09:49:54 -07:00
2020-07-14 08:41:00 -07:00
- run: npm run format-check
2020-07-25 09:49:54 -07:00
2020-07-14 08:41:00 -07:00
- run: npm test