We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33cb9ed commit 0909d85Copy full SHA for 0909d85
.github/workflows/ci.yml
@@ -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