Skip to content

Commit 1c35477

Browse files
authored
Merge pull request #3 from UseFedora/chore/ENABLE-1208/add-ci
Create ci.yml
2 parents 33cb9ed + da6b568 commit 1c35477

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/ci.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Run CI
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- master
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+
jobs:
15+
ci:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: checkout repository
19+
uses: actions/checkout@v4
20+
- name: Setup node
21+
uses: actions/setup-node@v4
22+
with:
23+
node-version: 16
24+
- run: |
25+
npm install

0 commit comments

Comments
 (0)