Skip to content

(feat) Adding Chaos Engineering #28

(feat) Adding Chaos Engineering

(feat) Adding Chaos Engineering #28

name: Deploy to GitHub Pages (Test)
on:
pull_request:
branches:
- master
defaults:
run:
working-directory: ./website
jobs:
test-deploy:
name: Test deployment
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: yarn
cache-dependency-path: '**/yarn.lock'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Test build website
run: yarn build