build(deps-dev): bump eslint-plugin-jest from 27.2.3 to 28.8.3 #2525
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
# NOTE: This name appears in GitHub's Checks API and in workflow's status badge. | |
name: ci-tests | |
# Trigger the workflow when: | |
on: | |
# A push occurs to one of the matched branches. | |
push: | |
branches: | |
- master | |
# Or when a pull request event occurs for a pull request against one of the | |
# matched branches. | |
pull_request: | |
branches: | |
- master | |
jobs: | |
tests: | |
# NOTE: This name appears in GitHub's Checks API. | |
name: tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
# Check out pull request's HEAD commit instead of the merge commit to | |
# work-around an issue where a wrong commit is being checked out. | |
# For more details, see: | |
# https://github.com/actions/checkout/issues/299. | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Install needed system packages | |
run: | | |
sudo apt-get update -y | |
sudo apt-get install -y libusb-1.0.0 libudev-dev | |
- name: Set up Node.js 18 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
- name: Build code | |
run: | | |
yarn install --frozen-lockfile | |
yarn build | |
- name: Run tests | |
run: | | |
yarn test:unit |