Skip to content

Commit

Permalink
Create offline.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lesleyrs authored Jul 9, 2024
1 parent c11056c commit 2e52695
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/offline.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 2e52695

Please sign in to comment.