Skip to content

please run the test

please run the test #6

Workflow file for this run

name: Build Image

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

View workflow run for this annotation

GitHub Actions / .github/workflows/myflow.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: build-image
on:
push:
branches:
- main
jobs:
build-image:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x] # Adjust the Node.js versions as needed
steps:
- name: step 1
uses: actions/checkout@v1
- name: Set up Node.js
uses: actions/setup-node@v1
# with:
# node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm install
- name: Build
run: npm run build