Skip to content

Pw 21587 midroll reported as postroll #420

Pw 21587 midroll reported as postroll

Pw 21587 midroll reported as postroll #420

Workflow file for this run

name: CI
on:
push:
branches: ['**']
pull_request:
branches:
- develop
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
lint_build_test:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout
uses: actions/checkout@v3
- name: Set up node.js
uses: actions/[email protected]
with:
node-version-file: .nvmrc
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Test
run: npm run test