Skip to content

[release] 4.50.0 - Evaluation callback and exposure logging debug inf… #110

[release] 4.50.0 - Evaluation callback and exposure logging debug inf…

[release] 4.50.0 - Evaluation callback and exposure logging debug inf… #110

Workflow file for this run

name: tests
on:
workflow_dispatch:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
jest:
runs-on: ubuntu-20.04
timeout-minutes: 5
steps:
- uses: actions/checkout@v2
- name: cache .npm
uses: actions/cache@v2
env:
cache-name: npm
with:
path: ~/.npm
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
- run: npm install
- run: npm run testForGithubOrRedisEnthusiasts
eslint:
runs-on: ubuntu-20.04
timeout-minutes: 5
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- name: cache .npm
uses: actions/cache@v2
env:
cache-name: npm
with:
path: ~/.npm
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
- run: npm install
- name: Lint
run: npm run lint
- name: Commit changes
uses: stefanzweifel/[email protected]
with:
commit_message: Lint/Format
branch: ${{ github.head_ref }}