Skip to content

init sub project

init sub project #348

Workflow file for this run

# This is a basic workflow to help you get started with Actions

Check failure on line 1 in .github/workflows/blank.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/blank.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: env
name: CI
on:
push:
workflow_dispatch:
jobs:
env:
nodejs_version: 18.x
repo_dir: sub
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node
uses: actions/setup-node@v2
with:
node-version: ${{ env.nodejs_version }}
cache: 'npm'
cache-dependency-path: ${{ env.repo_dir }}/package-lock.json
- run: |
cd $repo_dir && npm ci