From 1a7349fe7488e958c9d0a85a77ddd4726f7d47e9 Mon Sep 17 00:00:00 2001 From: MarvNC Date: Thu, 18 Jan 2024 21:24:20 -0800 Subject: [PATCH] Add test workflow --- .github/workflows/test.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/test.yaml diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml new file mode 100644 index 0000000..d6362a6 --- /dev/null +++ b/.github/workflows/test.yaml @@ -0,0 +1,15 @@ +name: Node.js CI + +on: [push, pull_request] + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 20 + - run: npm ci + - run: npm test