Skip to content

Initial Commit #4

Initial Commit

Initial Commit #4

Workflow file for this run

name: Build and Test
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Node.js environment
uses: actions/setup-node@v4.0.1
with:
node-version: 20
- run: npm install -g bats
- run: bats -v
- name: Upload a Build Artifact
uses: actions/upload-artifact@v4.3.0
with:
name: 'my-blog'
path: '_site'