Skip to content

Commit

Permalink
CI ADDED
Browse files Browse the repository at this point in the history
  • Loading branch information
Nate Kidwell authored and Nate Kidwell committed Apr 10, 2024
1 parent b5a191c commit ff22800
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
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: [ staging-iac ]
steps:
- name: checkout repository
uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7' # Not needed with a .ruby-version file
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- run: |
npm install

0 comments on commit ff22800

Please sign in to comment.