diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml new file mode 100644 index 0000000..7679498 --- /dev/null +++ b/.github/workflows/github-actions.yml @@ -0,0 +1,26 @@ +name: Continuous Delivery + +on: + push: + pull_request: + +jobs: + install: + runs-on: ubuntu-latest + + steps: + - name: Checkout branch + uses: actions/checkout@v3 + + - name: Set up Node.js version + uses: actions/setup-node@v3 + with: + node-version: 16 + + - name: Install dependencies + run: | + npm ci + + - name: Build + run: | + npm run build diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 0000000..19c7bdb --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +16 \ No newline at end of file