Skip to content

Add renovate.json

Add renovate.json #16

---
name: "Test njre"
on: [push, pull_request]
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
build:
name: Test NJRE
# Set the agent to run on
runs-on: ubuntu-latest
# Prevent duplicate run from happening when a forked push is committed
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
timeout-minutes: 60
steps:
- name: Checkout Code
uses: actions/checkout@v2.4.0
- name: Setup Node
uses: actions/setup-node@v2.5.1
with:
node-version: "12"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run tests
run: yarn test