Skip to content

Minor fixes on the workflow #8

Minor fixes on the workflow

Minor fixes on the workflow #8

Workflow file for this run

name: CI workflow
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
ci:
runs-on: ubuntu-latest
container: node:21-alpine
defaults:
run:
working-directory: ./app
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: npm i
- name: Build project
run: npm run build
- name: Archive production artifacts
uses: actions/upload-artifact@v4
with:
name: app
path: |
./app/build
!./app/build/**/*.md