Skip to content
This repository has been archived by the owner on Dec 5, 2023. It is now read-only.

Bump sass from 1.35.1 to 1.69.3 #616

Bump sass from 1.35.1 to 1.69.3

Bump sass from 1.35.1 to 1.69.3 #616

name: Build and deploy site
on:
push:
branches:
- main
- develop
pull_request:
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [15]
steps:
- name: Checkout 🛎
uses: actions/checkout@master
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Setup node env 🏗
uses: actions/setup-node@v2.1.2
with:
node-version: ${{ matrix.node }}
check-latest: true
- name: Cache node_modules 📦
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies 👨🏻‍💻
run: npm ci
- name: Run linter 👀
run: npm run lint
- name: Run Unit Tests 🧪
run: npm run test
- name: Generate ⚙️
run: npm run generate
- uses: nanasess/setup-chromedriver@master
- name: Run E2E Tests 🧪
run: |
npx serve dist &
npm run e2e:ci
- name: Run Lighthouse CI 💡🏠
env:
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }}
run: |
npm install -g @lhci/cli@0.7.x
lhci autorun
- name: Upload artifacts (screenshots) 📸
if: ${{ always() }}
uses: actions/upload-artifact@v2
with:
name: cypress screenshots
path: cypress/screenshots/
- name: Upload artifacts (videos) 📹
if: ${{ always() }}
uses: actions/upload-artifact@v2
with:
name: cypress videos
path: cypress/videos/
- name: Upload artifacts (downloads) 📥
if: ${{ always() }}
uses: actions/upload-artifact@v2
with:
name: cypress downloads
path: cypress/downloads/
cd:
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
environment: production
needs: ci
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [15]
steps:
- name: Checkout 🛎
uses: actions/checkout@master
- name: Setup node env 🏗
uses: actions/setup-node@v2.1.2
with:
node-version: ${{ matrix.node }}
check-latest: true
- name: Cache node_modules 📦
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies 👨🏻‍💻
run: npm ci
- name: Generate ⚙️
env:
BASE_PATH: ${{ secrets.BASE_PATH }}
FATHOM_TOKEN: ${{ secrets.FATHOM_TOKEN }}
run: npm run generate
- name: Deploy 🚀
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist