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

30 lines
760 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: Create Hash
uses: actions/go-hashfiles@v0.0.1
id: get-hash
with:
patterns: package-lock.json
- name: Restore Cached Dependencies
uses: actions/cache/restore@v3
with:
path: node_modules
key: npm-${{ steps.get-hash.outputs.hash }}
- name: Install Dependencies
run: npm i
- name: Cache Dependencies
uses: actions/cache@v3
with:
path: node_modules
key: npm-${{ steps.get-hash.outputs.hash }}