build(deps-dev): bump prettier from 3.2.1 to 3.2.2 #575
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: build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
# https://www.npmjs.com/package/selenium-webdriver#projected-support-schedule | |
node-version-file: .nvmrc | |
- name: Install dependencies | |
run: yarn --frozen-lockfile --prefer-offline | |
- name: Run async-await | |
run: yarn async-await | |
- name: Run build | |
run: node -e 'require("./recipes/build").quit()' | |
- name: Run chrome-profile | |
run: yarn chrome-profile | |
- name: Run cucumber | |
run: yarn cucumber | |
- name: Run find | |
run: yarn find | |
- name: Run jest | |
run: yarn jest | |
- name: Run mocha | |
run: yarn mocha | |
- name: Run screenshot | |
run: yarn screenshot | |
- name: Run wait-until | |
run: yarn wait-until |