Skip to content

Merge pull request #12 from Team-Wander/feature/WritePage #9

Merge pull request #12 from Team-Wander/feature/WritePage

Merge pull request #12 from Team-Wander/feature/WritePage #9

Workflow file for this run

name: CI
on:
push:
branches: ["*"]
pull_request:
branches: ["*"]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Install dependencies
run: npm install
- name: Build the project
run: npm run build
env:
CI: ""
- name: Run Tests
run: npm test

Check failure on line 34 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 34
- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: build
path: build