Merge pull request #28 from monday9pm/junseo/recruiting-2024-09 #53
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs | |
# See : https://github.com/monday9pm/Hermes-Poster | |
name: Forword CI | |
on: | |
push: | |
branches: [ "main" ] | |
#pull_request: | |
# branches: [ "main" ] | |
# types: [closed] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: Ana06/[email protected] | |
id: abc | |
with: | |
format: space-delimited | |
token: ${{ secrets.GITHUB_TOKEN }} | |
# from Git diff | |
- name: Update files | |
run: | | |
echo "All:" | |
echo "${{ steps.abc.outputs.all }}" | |
echo "Added: These will publish to others" | |
echo "${{ steps.abc.outputs.added }}" | |
echo "${{ steps.abc.outputs.added }}" >> action-articles.conf | |
echo "Removed:" | |
echo "${{ steps.abc.outputs.removed }}" | |
echo "Renamed:" | |
echo "${{ steps.abc.outputs.renamed }}" | |
echo "Modified:" | |
echo "${{ steps.abc.outputs.modified }}" | |
echo "Added+Modified:" | |
echo "${{ steps.abc.outputs.added_modified }}" | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
# from Github Repository Secrets | |
- run: echo "Generate Configs..." | |
- run: echo "${{ secrets.HERMES_POSTER }}" >> action-secret.conf | |
- run: npm ci | |
- run: npm run build --if-present | |
- run: npm start |