Skip to content

Bump braces from 3.0.2 to 3.0.3 #174

Bump braces from 3.0.2 to 3.0.3

Bump braces from 3.0.2 to 3.0.3 #174

Workflow file for this run

name: build
on:
pull_request:
push:
branches: [master]
tags:
- .*
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Install nodejs 🔧
uses: actions/setup-node@v3
with:
node-version: latest
- name: Build and test app 🔧
run: |
npm ci
npm run build:ci
deploy_to_github_pages:
if: github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Install and Build 🔧
run: |
npm ci
npm run build:githubpages
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: dist