Skip to content

video-streaming-app

video-streaming-app #1

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: install dependencies
run: npm ci
- name: run linter
run: npm run lint
- name: run build
run: npm run build
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "16"
- name: install dependencies
run: npm ci
- name: run tests
run: npm run test:e2e