From bcd3fae748f15d4235d7aadc4e3296ce75c398da Mon Sep 17 00:00:00 2001 From: Joey Zhou Date: Thu, 27 Jul 2023 12:20:34 -0700 Subject: [PATCH] add build step --- .github/workflows/build.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/build.yml 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