ssh-deploy/.github/workflows/build.yml

32 lines
625 B
YAML
Raw Normal View History

2021-04-17 01:06:00 +03:00
name: Build
on:
push:
branches: [ '**' ]
pull_request:
branches: [ $default-branch ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [14.x]
steps:
2021-05-27 23:56:27 +03:00
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node.js ${{ matrix.node-version }}
2021-04-17 01:06:00 +03:00
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
2021-05-27 23:56:27 +03:00
- name: Install dependencies
run: npm ci
- name: Build Library
run: npm run build
- name: Run Tests
run: npm test --if-present