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