Vencord/.github/workflows/test.yml

28 lines
651 B
YAML
Raw Normal View History

2022-10-12 14:06:53 +00:00
name: test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
2022-10-12 14:06:53 +00:00
test:
2022-10-09 20:31:51 +00:00
runs-on: ubuntu-latest
2022-10-09 20:31:51 +00:00
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2 # Install pnpm using packageManager key in package.json
- name: Use Node.js 18
uses: actions/setup-node@v2
with:
node-version: 18
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint & Test if it compiles
run: pnpm test