Skip to content

Commit

Permalink
ci: update action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
rfverbruggen committed Nov 24, 2024
1 parent 927a222 commit 302518b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: CI
on:
push:
branches:
- 'main'
- "main"
pull_request:
branches: [main]
release:
Expand All @@ -23,7 +23,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
- run: npm install
- run: xvfb-run -a npm test
if: runner.os == 'Linux'
Expand All @@ -34,11 +34,11 @@ jobs:
needs: ["test"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Install Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
- run: npm install
- run: xvfb-run -a npm test
- uses: SonarSource/sonarcloud-github-action@master
Expand All @@ -52,9 +52,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
- run: npm install
- run: npm run compile
- run: npm run deploy
Expand Down

0 comments on commit 302518b

Please sign in to comment.