Skip to content

Adding orange pi 5 max blog #60

Adding orange pi 5 max blog

Adding orange pi 5 max blog #60

Workflow file for this run

name: NPM Build Pull Request
on:
pull_request:
branches:
- '*'
workflow_dispatch:
jobs:
deployment:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Update NPM
run: npm i -g [email protected]
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Build
run: |
npm i --legacy-peer-deps
npm run build
npm run export