Skip to content

Migrate to roku-deploy v4 #2524

Migrate to roku-deploy v4

Migrate to roku-deploy v4 #2524

Workflow file for this run

name: build
on:
push:
branches:
- master
pull_request:
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@master
with:
node-version: "20.19.4"
- run: npm ci
- run: npm run build
- run: npm run lint
- run: npm run test
- run: npm run create-package
- name: Upload coverage to Coveralls
if: matrix.os == 'ubuntu-latest'
uses: coverallsapp/github-action@v2
env:
#just hardcode this. It's not a mission-critical token, and we can always change it
COVERALLS_REPO_TOKEN: "Ysqq6q68DgojDzv3gvl5Yv029HXZYwGxq"
with:
path-to-lcov: ./coverage/lcov.info