Skip to content

YPP: Elasticsearch alerts integration #59

YPP: Elasticsearch alerts integration

YPP: Elasticsearch alerts integration #59

Workflow file for this run

name: build
on: [pull_request, push]
jobs:
build_ubuntu:
name: Ubuntu Checks
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: checks
run: |
yarn install --frozen-lockfile
yarn build
- name: yarn pack test
run: |
yarn pack --filename youtube-synch-test.tgz
tar zxvf ./youtube-synch-test.tgz
cd ./package && yarn link
build_osx:
name: MacOS Checks
runs-on: macos-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: checks
run: |
yarn install --frozen-lockfile
yarn build
- name: yarn pack test
run: |
yarn pack --filename youtube-synch-test.tgz
tar zxvf ./youtube-synch-test.tgz
cd ./package && yarn link