Skip to content

Commit

Permalink
Removed commented code from github action
Browse files Browse the repository at this point in the history
  • Loading branch information
KristofVDB1 committed Nov 22, 2023
1 parent 9534cb8 commit d79ba46
Showing 1 changed file with 5 additions and 23 deletions.
28 changes: 5 additions & 23 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ name: CI
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main" ]
branches: ["main"]
paths-ignore:
- '**/README.md'
- "**/README.md"
pull_request:
branches: [ "main" ]
branches: ["main"]
paths-ignore:
- '**/README.md'
- "**/README.md"

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand All @@ -27,33 +27,15 @@ jobs:
matrix:
os: [ubuntu-latest]
node-version:
- 14.x
- 16.x
- 18.x
steps:
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
# Runs a single command using the runners shell
# Runs a single command using the runners shell
- name: Check out repository
uses: actions/checkout@v3
- name: Run a one-line script
run: echo Hello, world!

# - name: Use Node.js ${{ matrix.node-version }}
# uses: actions/setup-node@v3
# with:
# node-version: ${{ matrix.node-version }}
# - name: Check out repository
# uses: actions/checkout@v3
# - name: Install dependencies
# run: |
# npm install
# npx lerna exec -- npm i
# npx lerna bootstrap
# - name: Build project
# run: npm run build
# - name: Run integration test script
# run: ./.github/scripts/oslo-converter-uml-ea.int.sh
# shell: bash

0 comments on commit d79ba46

Please sign in to comment.