Skip to content

Commit

Permalink
Update CI workflow to use latest actions and add change log verification
Browse files Browse the repository at this point in the history
  • Loading branch information
Luxcium committed Feb 1, 2025
1 parent f2de09c commit ca580cb
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,31 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Git config user
uses: snow-actions/[email protected]
with:
name: Luxcium
email: [email protected]

- name: Setup Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: '22'

- name: Install Rush
run: npm install -g @microsoft/rush

- name: Install dependencies with Rush
run: rush update

- name: Verify Change Logs
run: rush change --verify

- name: Build projects
run: rush build

Expand Down

0 comments on commit ca580cb

Please sign in to comment.