Skip to content

HULUROKU-6968 - update to rokucommunity/brs version 0.45.0 #210

HULUROKU-6968 - update to rokucommunity/brs version 0.45.0

HULUROKU-6968 - update to rokucommunity/brs version 0.45.0 #210

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
}
}
}
}