Skip to content

mrago256 is running a deployment #33

mrago256 is running a deployment

mrago256 is running a deployment #33

Workflow file for this run

name: Deploy Website
run-name: ${{ github.actor }} is running a deployment
on:
push:
branches: [ development, main ]
pull_request:
branches: [ development, main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Display event information
run: |
echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
- name: Check out repository code
uses: actions/checkout@v4
- name: Install modules
run: npm install
- name: Run tests
run: npm run test
- name: Build Website
run: npm run build