Skip to content

Commit 0909d85

Browse files
Nate KidwellNate Kidwell
Nate Kidwell
authored and
Nate Kidwell
committedApr 10, 2024
CI ADDED
1 parent 33cb9ed commit 0909d85

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
 

‎.github/workflows/ci.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Run CI
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- main
8+
9+
env:
10+
GH_PACKAGE_USERNAME: ${{ secrets.GH_PACKAGE_USERNAME }}
11+
GH_PACKAGE_TOKEN: ${{ secrets.GH_PACKAGE_TOKEN }}
12+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
13+
14+
15+
jobs:
16+
ci:
17+
runs-on: [ staging-iac ]
18+
steps:
19+
- name: checkout repository
20+
uses: actions/checkout@v4
21+
- name: Setup node
22+
uses: actions/setup-node@v4
23+
with:
24+
node-version: 16
25+
- run: |
26+
npm install

0 commit comments

Comments
 (0)