Skip to content

circleci -> github actions #6

circleci -> github actions

circleci -> github actions #6

Workflow file for this run

name: CI
on:
push:
branches: [ "master" ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '16'
cache: 'npm'
- run: npm ci --legacy-peer-deps
- run: cd homotopy-core && npm ci && npm run build --if-present
- run: npm run build --if-present
- name: Archive build artifacts
uses: actions/upload-artifact@v4
with:
name: webclient
path: dist
deploy:
name: Deploy
runs-on: ubuntu-latest
needs: [build]
if: github.ref == 'refs/heads/master'
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Download build artifacts
uses: actions/download-artifact@v4
with:
name: webclient
path: dist
- name: Deploy to Firebase (live)
uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: '${{ secrets.GITHUB_TOKEN }}'
firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_HOMOTOPY_IO }}'
channelId: live
projectId: homotopy-io