From 1ee66ed697671f52a6ff247e40f2c192fd295772 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Thu, 29 Aug 2024 14:43:03 -0600 Subject: [PATCH] chore: add ci config --- .github/workflows/node.js.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/node.js.yml diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml new file mode 100644 index 0000000..1e042af --- /dev/null +++ b/.github/workflows/node.js.yml @@ -0,0 +1,24 @@ +name: Node.js CI +on: + push: + branches: ['main'] + pull_request: +jobs: + build: + name: 'Node.js build: fmt, clean-install, lint, test' + runs-on: ubuntu-latest + strategy: + matrix: + node-version: + # - 20.x + - latest + steps: + - uses: actions/checkout@v3 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + - run: npm run fmt + - run: npm clean-install + - run: npm run lint + - run: npm run test