mirror of
https://github.com/zkldi/Tachi.git
synced 2026-09-27 17:38:11 +03:00
43 lines
1.0 KiB
YAML
43 lines
1.0 KiB
YAML
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
|
|
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
|
|
|
|
name: Node.js CI
|
|
|
|
env:
|
|
KTBKS_MONGO_BASE_URL: "127.0.0.1"
|
|
NODE_ENV: "test"
|
|
KTBKS_LOG_LEVEL: "info"
|
|
KTBKS_CAPTCHA_SECRET_KEY: "unused"
|
|
KTBKS_SESSION_SECRET: "unused"
|
|
KTBKS_FLO_API_URL: "unused"
|
|
KTBKS_EAG_API_URL: "unused"
|
|
KTBKS_ARC_API_URL: "unused"
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Test on Node.js 15
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 15.x
|
|
|
|
- uses: pnpm/action-setup@v2.0.1
|
|
with:
|
|
version: 6.0.2
|
|
|
|
- uses: supercharge/mongodb-github-action@1.4.1
|
|
- uses: supercharge/redis-github-action@1.1.0
|
|
|
|
- run: pnpm i
|
|
- run: pnpm lint
|
|
- run: pnpm test
|