Update dependency eslint-plugin-jsx-a11y to v6.10.2 #337
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: yarn jest | |
on: push | |
jobs: | |
build: | |
name: yarn jest | |
# Tell the action to use the latest | |
# version of Ubuntu (a Linux flavor) | |
# https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on | |
runs-on: ubuntu-latest | |
steps: | |
# Use the official Checkout action: | |
# https://github.com/actions/checkout | |
- uses: actions/checkout@v2 | |
# Use the official setup-node action: | |
# https://github.com/actions/setup-node | |
- name: Use Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '14.x' | |
# - run: yarn --frozen-lockfile | |
- run: yarn | |
- run: yarn jest |