Skip to content

typo

typo #6

name: check_node_module
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
env:
test:false

Check failure on line 10 in .github/workflows/check_node_module.yml

View workflow run for this annotation

GitHub Actions / check_node_module

Invalid workflow file

The workflow is not valid. .github/workflows/check_node_module.yml (Line: 10, Col: 3): Unexpected value 'test:false'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.12.2]
steps:
- name: Checkout repository
uses: actions/checkout@main
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@main
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Build
run: npm run builddev