Skip to content

fix organizer images #49

fix organizer images

fix organizer images #49

Workflow file for this run

name: Main
on:
pull_request:
types: [assigned, opened, synchronize, reopened, labeled, unlabeled]
branches:
- main
jobs:
changelog-check:
name: Check CHANGELOG.md file
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Changelog check
uses: Zomzog/[email protected]
with:
fileName: changelog.md # default `CHANGELOG.adoc`
noChangelogLabel: PLease update the changelog.md file # default `no changelog`
checkNotification: Simple # default `Detailed`
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
build:
name: Build Node.js Application
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --if-present