diff options
| author | Factiven <[email protected]> | 2023-09-12 21:43:27 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-09-12 21:43:27 +0700 |
| commit | 95a1bd073cf462d02d877fbaa933b234a497812a (patch) | |
| tree | c5e23d5fbaa9b63bcd40a421259863cc53b72624 /.github/workflows | |
| parent | Update issue templates (diff) | |
| download | moopa-95a1bd073cf462d02d877fbaa933b234a497812a.tar.xz moopa-95a1bd073cf462d02d877fbaa933b234a497812a.zip | |
Create build-test.yml
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build-test.yml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml new file mode 100644 index 0000000..03b840e --- /dev/null +++ b/.github/workflows/build-test.yml @@ -0,0 +1,25 @@ +name: Build Test + +on: + pull_request: + branches: + - main + +jobs: + build-test-job: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Set up Node.js + uses: actions/setup-node@v2 + with: + node-version: 18 + + - name: Install dependencies + run: npm install + + - name: Build the Next.js app + run: npm run build |