From 728fedfe324ab1892ee2eebd478ef6ed575c25a7 Mon Sep 17 00:00:00 2001 From: Jennifer Shehane Date: Tue, 19 Dec 2023 16:29:14 -0500 Subject: [PATCH] github workflow --- .github/workflows/main.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..540ad3d --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,10 @@ +steps: +- uses: actions/checkout@v4 +- name: Use Node.js + uses: actions/setup-node@v3 + with: + node-version: '20.x' +- name: Install dependencies + run: npm ci +- name: Run tests + run: npm run test \ No newline at end of file