Skip to content

Update reqs to join the BG #50

Update reqs to join the BG

Update reqs to join the BG #50

Workflow file for this run

name: SRE Backend tests
on:
pull_request:
branches:
- master
- github-actions-test
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
# Cache node_modules until a yarn.lock changes.
- uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- run: yarn install
- run: yarn test:backend