Skip to content

Commit

Permalink
Create ci.yml
Browse files Browse the repository at this point in the history
added minimal co
  • Loading branch information
ludicast authored Apr 12, 2024
1 parent 53a605f commit 3747e8d
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 3747e8d

Please sign in to comment.