Files
ota-admin-portal/.github/workflows/test.workflow.yml
Rafi Greenberg 26e25a5b23 Deploy (#6)
* pipeline

* pipeline

* slack channel

* slack channel
2021-01-08 10:55:17 -08:00

24 lines
437 B
YAML

name: Node.js CI
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --if-present
- run: npm test
env:
CI: true