build(deps-dev): bump @wdio/spec-reporter from 9.0.7 to 9.10.1 in /grist-deployment-tests #30
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: CI | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- grist-deployment-tests/ | |
pull_request: | |
branches: | |
- main | |
# Allows running this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '22' | |
- name: Install dependencies | |
run: | | |
cd grist-deployment-tests | |
npm install | |
- name: Run CI script | |
run: | | |
cd grist-deployment-tests | |
npm run ci |