Skip to content

[HULUROKU-7877] Replace brs package with @rokucommunity/brs version 0.45.2 #217

[HULUROKU-7877] Replace brs package with @rokucommunity/brs version 0.45.2

[HULUROKU-7877] Replace brs package with @rokucommunity/brs version 0.45.2 #217

Workflow file for this run

{
name: "PR & Push",
on: {
push: {
branches: [ "main" ]
},
pull_request: {
branches: [ "main" ]
}
},
jobs: {
build: {
runs-on: "ubuntu-latest",
strategy: {
matrix: {
node_version: [ 10, 12, 14 ]
}
},
steps: [
{ uses: "actions/checkout@v2" },
{
name: "Node v${{ matrix.node_version}}",
uses: "actions/setup-node@v1",
with: {
node-version: "${{ matrix.node_version }}"
}
},
{ run: "yarn --frozen-lockfile" },
{ run: "yarn build" },
{ run: "yarn lint" },
{ run: "yarn prettier" },
{ run: "yarn test" },
],
env: {
CI: true
}
}
}
}