Skip to content

fix(ci): setup permissions set for github token #220

fix(ci): setup permissions set for github token

fix(ci): setup permissions set for github token #220

Workflow file for this run

name: CI
on: pull_request
permissions:
actions: write
checks: write
contents: write
issues: write
pull-requests: write
statuses: write
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
sudo ./gradlew installDangerPlugin
- name: Run Danger-Kotlin
run: DEBUG='*' danger-kotlin ci --dangerfile Dangerfile_ci.df.kts
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}