Skip to content

install npm dependencies #6

install npm dependencies

install npm dependencies #6

Workflow file for this run

name: Build site for Deployment to blog.oxrud.com
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "18.x"
- name: Install npm packages
run: npm i
- name: Setup Ruby and install gem dependencies
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
bundler-cache: true
- name: Build site
run: JEKYLL_ENV=production bundle exec jekyll build