Skip to content

chore: setup test build workflow #5

chore: setup test build workflow

chore: setup test build workflow #5

Workflow file for this run

name: Test Project Build
on:
pull_request:
types: [opened, reopened]
jobs:
build:
name: Test Project Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Run project build
run: |
npm install
steps:

Check failure on line 15 in .github/workflows/test-build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test-build.yml

Invalid workflow file

You have an error in your yaml syntax on line 15
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- run: npm ci