Skip to content

Merge pull request #51 from Muzikie/50-edit-privacy-page-to-include-d… #11

Merge pull request #51 from Muzikie/50-edit-privacy-page-to-include-d…

Merge pull request #51 from Muzikie/50-edit-privacy-page-to-include-d… #11

Workflow file for this run

name: Build
on:
push:
branches: [ "development" ]
pull_request:
branches: [ "development" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# Read node version from `.nvmrc` file
- id: nvmrc
uses: browniebroke/read-nvmrc-action@v1
- uses: actions/setup-node@v3
with:
# use the output from the action
node-version: '${{ steps.nvmrc.outputs.node_version }}'
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run build