diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml new file mode 100644 index 0000000..bc4e8f2 --- /dev/null +++ b/.github/workflows/node.yml @@ -0,0 +1,16 @@ +name: nutri-sight CI +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Use Node.js version 20 + uses: actions/setup-node@v3 + with: + node-version: '20' + - run: npm install \ No newline at end of file