Skip to content
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.

Temporarily turn off GA reporting. #1453

Temporarily turn off GA reporting.

Temporarily turn off GA reporting. #1453

Workflow file for this run

name: Alpha.CA.gov Automated Build
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm ci
npm run build --if-present
env:
CI: true
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
publish_branch: gh-pages
commit_message: ${{ github.event.head_commit.message }}