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 440a1fe commit fdf13cc
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
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 16
- run: |
npm install

0 comments on commit fdf13cc

Please sign in to comment.