fix(ci): update dependencies versions #212
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: pull_request | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: sdkman/sdkman-action@master | |
with: | |
candidate: gradle | |
version: 8.10.2 | |
- name: Install Kotlin | |
run: | | |
curl -o kotlin-compiler.zip -L https://github.com/JetBrains/kotlin/releases/download/v2.0.21/kotlin-compiler-2.0.21.zip | |
if [[ "$OSTYPE" != "darwin"* ]] | |
then | |
sudo chmod -R a+rwx /usr/local/ | |
unzip -d /usr/local/bin kotlin-compiler.zip | |
echo "/usr/local/bin/kotlinc/bin" >> $GITHUB_PATH | |
rm -rf kotlin-compiler.zip | |
fi | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '22.10.0' | |
- name: Install libncurses5 | |
run: | | |
if [[ "$OSTYPE" == "darwin"* ]] | |
then | |
brew install ncurses | |
else | |
sudo apt-get install libncurses5 | |
fi | |
- name: Install Danger JS | |
run: npm install -g danger | |
- name: Install Danger Kotlin | |
run: sudo make install | |
- name: Run tests | |
run: sudo ./gradlew danger-kotlin-library:test | |
- name: Install Plugin Installer | |
run: sudo ./gradlew danger-plugin-installer:publishToMavenLocal | |
- name: Build and Install Sample Plugin | |
working-directory: ./danger-kotlin-sample-plugin | |
run: | | |
sudo gradle wrapper | |
sudo ./gradlew build installDangerPlugin | |
- name: Run Danger-Kotlin | |
run: DEBUG='*' danger-kotlin ci --dangerfile Dangerfile_ci.df.kts | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |