This repository has been archived by the owner on Mar 25, 2024. It is now read-only.
Bump vitest from 1.2.0 to 1.4.0 in /packages/eslint-config #2210
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: Run tests | |
on: | |
push: | |
paths: | |
- 'packages/eslint-config/**/**.json' | |
- 'packages/eslint-config/**/**.lock' | |
- 'packages/eslint-config/**/**.js' | |
- 'packages/eslint-config/**/**.vue' | |
- 'packages/stylelint-config/**/**.json' | |
- 'packages/stylelint-config/**/**.lock' | |
- 'packages/stylelint-config/**/**.css' | |
- 'packages/stylelint-config/**/**.scss' | |
- '.github/**/*' | |
pull_request: | |
paths: | |
- 'packages/eslint-config/**/**.json' | |
- 'packages/eslint-config/**/**.lock' | |
- 'packages/eslint-config/**/**.js' | |
- 'packages/eslint-config/**/**.vue' | |
- 'packages/stylelint-config/**/**.json' | |
- 'packages/stylelint-config/**/**.lock' | |
- 'packages/stylelint-config/**/**.css' | |
- 'packages/stylelint-config/**/**.scss' | |
jobs: | |
build: | |
runs-on: [ ubuntu-latest ] | |
timeout-minutes: 15 | |
steps: | |
- name: Reset permissions | |
run: sudo chown -R $USER:$USER $GITHUB_WORKSPACE | |
- uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
- name: Install yarn | |
run: npm install -g yarn | |
- name: Install dependencies | |
run: yarn | |
- name: Setup lerna modules | |
run: yarn lerna bootstrap | |
- name: Run tests | |
run: yarn test | |
- name: Uninstall yarn | |
run: npm uninstall -g yarn |