Skip to content

0.7.1

0.7.1 #312

Workflow file for this run

name: build
on:
push:
branches:
- master
pull_request:
env:
NODE_VERSION: "18.20.4"
jobs:
ci:
runs-on: [self-hosted, roku-latest, enabled]
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@master
with:
node-version: ${{ env.NODE_VERSION }}
- name: Load local npm cache for node ${{ env.NODE_VERSION }}
uses: MasterworksIO/action-local-cache@2
with:
path: .npm
key: ${{ env.NODE_VERSION }}
strategy: move
- run: npm ci --cache .npm
- run: npm run build
- run: npm run test
- run: npm run test-package