From 7c715682f7aa7391680e0c3fc1ea7b01e723c735 Mon Sep 17 00:00:00 2001 From: abersheeran Date: Mon, 18 Dec 2023 16:26:52 +0800 Subject: [PATCH] Add CI workflow for Node.js --- .github/workflows/ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..b9f60aa --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,15 @@ +name: CI + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Use Node.js + uses: actions/setup-node@v3 + with: + node-version: "20.x" + - run: npm install