Update refers.json #269
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Eleventy Build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Retrieve npm cache (if any) | |
uses: actions/cache@v2 | |
with: | |
path: ~/.npm | |
key: npm-packages | |
- name: Use Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 18 | |
- name: Install packages | |
run: npm ci | |
- name: Build site | |
run: npm run production |