diff --git a/.github/workflows/verify-build-publish.yml b/.github/workflows/verify-build-publish.yml new file mode 100644 index 0000000..ba11bee --- /dev/null +++ b/.github/workflows/verify-build-publish.yml @@ -0,0 +1,24 @@ +name: Verify/Build/Deploy + +on: + push: + branches: [master] + pull_request: + +jobs: + job: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Use Node.js + uses: actions/setup-node@v4 + with: + node-version-file: ".nvmrc" + + - name: Install + run: npm install + + - name: test + run: npm run test diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 0000000..209e3ef --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +20