diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..da2cd23 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,25 @@ +name: CI Test Build + +on: + pull_request: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4.2.2 + + - name: Set up Node.js + uses: actions/setup-node@v4.4.0 + with: + node-version: 'latest' + + - name: Install dependencies + run: npm install + + - name: Run test build + run: npm run build \ No newline at end of file