Github actions
All checks were successful
CI / ci-tests (push) Successful in 1m13s

This commit is contained in:
2025-03-10 18:54:51 +09:00
parent f9d771f079
commit 1a3faad442

23
.github/workflows/ci.yml vendored Normal file
View File

@@ -0,0 +1,23 @@
name: CI
run-name: ${{ github.actor}} runs CI
# on:
# pull_request:
# branches:
# - main
on: [push]
jobs:
ci-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Run `npm install`
run: |
npm install
- name: Run vitest and report issues
run: npm run test:run