Skip to content

Commit

Permalink
Merge pull request #5 from UseFedora/chore/ENABLE-1208/add-base-ci
Browse files Browse the repository at this point in the history
[DARK] [ENABLE-1208] add initial ci
  • Loading branch information
mikekitzman authored Apr 12, 2024
2 parents 9d2d863 + 71b0a51 commit f1585f6
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Run CI

on:
pull_request:
push:
branches:
- main

env:
GH_PACKAGE_USERNAME: ${{ secrets.GH_PACKAGE_USERNAME }}
GH_PACKAGE_TOKEN: ${{ secrets.GH_PACKAGE_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}


jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: 10
- run: |
echo "hello world"
# FIND OUT IF THIS IS EVEN NEEDED!!!!! - search for sumome

0 comments on commit f1585f6

Please sign in to comment.