Skip to content

auth-registration

auth-registration #268

Workflow file for this run

name: GitHub Actions for builds test
on:
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Use Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: 16.x
- name: Install dependencies
run: npm install
- name: Build production
run: npm run build
- name: Build for local serve
run: npm run serve-build
- name: Build for github pages
run: npm run gh-pages-build