Omit first child of each element #8
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: pull_request | |
env: | |
FORCE_COLOR: 1 | |
jobs: | |
jest: | |
name: jest | |
runs-on: ubuntu-18.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: "12.x" | |
- name: Setup Dev Dependencies | |
run: | | |
npm install | |
- name: Run Test | |
run: npm test |