291st/.gitea/workflows/build.yml
Workflow config file is invalid. Please check your config file: yaml: line 20: found a tab character that violates indentation

34 lines
770 B
YAML

name: Build
run-name: ${{ gitea.actor }} is building
on: [push]
jobs:
Dependencies_NPM:
runs-on: Docker
container:
image: node:16
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Install Dependencies
run: npm i
- name: Cache Dependencies
if: success()
uses: actions/cache@v3
with:
path: node_modules
key: ${{ hashFile('package-lock.json') }}
Build_Node:
runs-on: Docker
container:
image: node:16
steps:
- name: Restore Cached Dependencies
uses: actions/cache/restore@v3
with:
path: node_modules
key: ${{ hashFile('package-lock.json') }}
- name: Build
run: npm run build