aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/test.yml
diff options
context:
space:
mode:
authorVen <vendicated@riseup.net>2022-10-12 16:06:53 +0200
committerGitHub <noreply@github.com>2022-10-12 16:06:53 +0200
commit09b3f6d19b717dc5d3a2e824b02848edeb7f8862 (patch)
tree44de8ab0dc788694765273241b5761af851891c5 /.github/workflows/test.yml
parent8dff79d3f7997c40d6e0c553f9c13681270bb173 (diff)
downloadVencord-09b3f6d19b717dc5d3a2e824b02848edeb7f8862.tar.gz
Vencord-09b3f6d19b717dc5d3a2e824b02848edeb7f8862.tar.bz2
Vencord-09b3f6d19b717dc5d3a2e824b02848edeb7f8862.zip
ci: rename lint -> test
Diffstat (limited to '.github/workflows/test.yml')
-rw-r--r--.github/workflows/test.yml27
1 files changed, 27 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
new file mode 100644
index 0000000..59fa3d2
--- /dev/null
+++ b/.github/workflows/test.yml
@@ -0,0 +1,27 @@
+name: test
+on:
+ push:
+ branches:
+ - main
+ pull_request:
+ branches:
+ - main
+jobs:
+ test:
+ runs-on: ubuntu-latest
+
+ 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