auto-complete-element/.github/workflows/nodejs.yml

25 строки
430 B
YAML
Исходник Постоянная ссылка Обычный вид История

2019-08-16 12:56:27 +03:00
name: Node CI
2020-05-21 01:30:15 +03:00
on: [push]
2019-08-16 12:56:27 +03:00
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
2019-08-16 12:56:27 +03:00
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
uses: actions/setup-node@v1
2019-08-16 12:56:27 +03:00
with:
node-version: 14.x
2019-08-16 12:56:27 +03:00
- name: npm install, build, and test
run: |
npm install
npm test
2020-05-21 01:29:02 +03:00
env:
CI: true