From d57fb23cf1e97e9d0ddbacf4a82fc47549f4af91 Mon Sep 17 00:00:00 2001 From: Alex Harley Date: Sat, 13 Apr 2024 21:18:36 +1200 Subject: [PATCH] feat: CI --- .github/workflows/pr.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/pr.yml diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml new file mode 100644 index 00000000..72e5164f --- /dev/null +++ b/.github/workflows/pr.yml @@ -0,0 +1,17 @@ +name: CI + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Use Node.js + uses: actions/setup-node@v4 + with: + node-version: "20.x" + # - run: npm ci + # - run: npm run build --if-present + - run: npm test