mirror of
https://github.com/hodgef/simple-keyboard.git
synced 2025-01-20 01:22:59 +08:00
23 lines
481 B
YAML
23 lines
481 B
YAML
|
name: Build PR
|
||
|
on: [pull_request]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ${{ matrix.os }}
|
||
|
strategy:
|
||
|
matrix:
|
||
|
node-version: [12.x]
|
||
|
os: [ubuntu-latest]
|
||
|
steps:
|
||
|
- uses: actions/checkout@v1
|
||
|
- name: Use Node.js ${{ matrix.node_version }}
|
||
|
uses: actions/setup-node@v1
|
||
|
with:
|
||
|
node-version: ${{ matrix.node_version }}
|
||
|
- name: npm install, build, and test
|
||
|
run: |
|
||
|
npm install
|
||
|
npm run coverage
|
||
|
env:
|
||
|
CI: true
|