Skip to content

debug ci

debug ci #1642

Workflow file for this run

name: CI
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['16.x']
name: Node ${{ matrix.node }} sample
steps:
- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"
- uses: actions/checkout@v2
- run: |
git fetch --no-tags --depth=1 origin master
git checkout -b master
git checkout ${{ github.event.pull_request.head.sha }}
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: yarn
- name: Run Eslint checks
run: yarn check:es
- name: Run Changed tests only
run: npx jest --verbose --onlyChanged --changedSince=${{ github.event.workflow_run.head_sha }}