This repository has been archived by the owner on Sep 29, 2024. It is now read-only.
chore(deps-dev): bump vite from 5.2.4 to 5.2.6 #114
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 Test Suite | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: bash | |
permissions: | |
contents: read | |
jobs: | |
tests: | |
name: Testing | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/[email protected] | |
with: | |
cache: npm | |
- name: Install dependencies | |
run: | | |
set -xe | |
npm i | |
- name: Testing | |
run: | | |
set -xe | |
npm run test | |
# It is recommended to require this check to pass before merging a pull request | |
check: | |
if: always() | |
name: Tests Successful | |
runs-on: ubuntu-latest | |
needs: [tests] | |
steps: | |
- name: Whether the whole test suite passed | |
uses: re-actors/[email protected] | |
with: | |
jobs: ${{ toJSON(needs) }} |