From fdf13cce57a71b3f12c8aec05e7aaee01afad3af Mon Sep 17 00:00:00 2001 From: Nate Kidwell Date: Wed, 10 Apr 2024 16:29:17 -0400 Subject: [PATCH] CI ADDED --- .github/workflows/ci.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..2dbf357 --- /dev/null +++ b/.github/workflows/ci.yml @@ -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