Skip to content

debug ci

debug ci #1647

Workflow file for this run

name: CI
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install Dependencies
run: yarn
- name: Run Eslint checks
run: yarn check:es
- name: Run Changed tests only
if: github.event_name == 'pull_request'
run: npx jest --verbose --onlyChanged --changedSince=${{ github.event.pull_request.base.sha }}