diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000000..2d52a327e5c --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,18 @@ +name: Compile + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Use Node.js + uses: actions/setup-node@v3 + with: + node-version: '18.12.x' + - run: npm ci + - run: cp .env-dist .env + - run: npm run build