aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorMatt Strapp <matt@mattstrapp.net>2024-08-09 09:05:18 -0500
committerMatt Strapp <matt@mattstrapp.net>2024-08-09 09:05:18 -0500
commitf7e13f5917e176fd44a80479ab06eb61e34dd138 (patch)
treedc5ebed287c123b4e572371074ffcd59a8a76334 /.github
parentci: Rename things better (diff)
downloadlocusts-f7e13f5917e176fd44a80479ab06eb61e34dd138.tar
locusts-f7e13f5917e176fd44a80479ab06eb61e34dd138.tar.gz
locusts-f7e13f5917e176fd44a80479ab06eb61e34dd138.tar.bz2
locusts-f7e13f5917e176fd44a80479ab06eb61e34dd138.tar.lz
locusts-f7e13f5917e176fd44a80479ab06eb61e34dd138.tar.xz
locusts-f7e13f5917e176fd44a80479ab06eb61e34dd138.tar.zst
locusts-f7e13f5917e176fd44a80479ab06eb61e34dd138.zip
feat: Add Node.js
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/node.yml45
1 files changed, 45 insertions, 0 deletions
diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml
new file mode 100644
index 0000000..a8d8002
--- /dev/null
+++ b/.github/workflows/node.yml
@@ -0,0 +1,45 @@
+name: Node.js
+
+on:
+ push:
+ paths:
+ - "**.js"
+ - "**.ts"
+ - "package.json"
+ - "packages/**"
+ - "turbo.json"
+ - ".github/workflows/node.yml"
+ - ".syncpackrc"
+ pull_request:
+ paths:
+ - "**.js"
+ - "**.ts"
+ - "package.json"
+ - "packages/**"
+ - "turbo.json"
+ - ".github/workflows/node.yml"
+ - ".syncpackrc"
+
+jobs:
+ build-and-test:
+ name: Build and Test
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+ - name: Cache turborepo
+ uses: actions/cache@v4
+ with:
+ path: .turbo
+ key: ${{ runner.os }}-turbo-${{ github.sha }}
+ restore-keys: |
+ ${{ runner.os }}-turbo-
+ - name: Set up Node.js
+ uses: actions/setup-node@v4
+ with:
+ node-version: "latest"
+ cache: "pnpm"
+ - name: Install pnpm and dependencies
+ uses: pnpm/action-setup@v4
+ with:
+ version: 8
+ run_install: true