From 2e52695f51aa3f7e796b801e5ace0669547ec73f Mon Sep 17 00:00:00 2001 From: lesleyrs <19632758+lesleyrs@users.noreply.github.com> Date: Wed, 10 Jul 2024 00:24:24 +0200 Subject: [PATCH] Create offline.yml --- .github/workflows/offline.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/offline.yml diff --git a/.github/workflows/offline.yml b/.github/workflows/offline.yml new file mode 100644 index 00000000..84f210ac --- /dev/null +++ b/.github/workflows/offline.yml @@ -0,0 +1,35 @@ +name: Build and Deploy + +on: + push: + branches: [ worker ] + +permissions: + contents: write + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Use Node.js 18.x + uses: actions/setup-node@v2 + with: + node-version: '18.x' + + - name: Install dependencies + run: npm install + + - name: Build TypeScript + run: npm run build + + - name: Test + run: npm run test + + - name: Deploy to GitHub Pages + uses: JamesIves/github-pages-deploy-action@v4 + with: + folder: public