* Run demo GitHub Action in parallel * Fix path of action yml * Move checkout to demo action * Prettier format * Specifying shell * Try to fix uses * Fix spelling issue * Fix demo * Downloading artifacts too unreliable Building instead * Re-name step Re-use action elsewhere
13 lines
289 B
YAML
13 lines
289 B
YAML
name: Install dependencies and build ⚙️
|
|
description: Install dependencies and build
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Install Dependencies
|
|
shell: bash
|
|
run: npm ci --force
|
|
- name: Build
|
|
shell: bash
|
|
run: npm run build
|