mirror of
https://github.com/Nezumi-2711/google-drive-s3.git
synced 2026-09-22 05:31:47 +00:00
28 lines
519 B
YAML
28 lines
519 B
YAML
name: Unit testing CI
|
|
on: [push, pull_request]
|
|
permissions: {}
|
|
|
|
|
|
jobs:
|
|
build:
|
|
name: Test with Vitest
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Setup Node.js
|
|
run: sudo snap install node --channel=24/stable --classic
|
|
|
|
- name: Install pnpm
|
|
run: npm install -g pnpm
|
|
|
|
- name: Install dependencies
|
|
run: pnpm install
|
|
|
|
- name: Run Vitest
|
|
run: pnpm test
|