Skip to content

feat: gradle support #179

feat: gradle support

feat: gradle support #179

Workflow file for this run

---
name: CI
on:
push:
branches:
- master
paths-ignore:
- '**/*.md'
- .github/workflows/**
pull_request:
branches:
- master
jobs:
build-and-test:
runs-on: ubuntu-latest
if: github.repository_owner == 'fabric8-analytics'
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ssh-key: ${{ secrets.DEPLOY_KEY }}
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: 'https://npm.pkg.github.com'
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create .npmrc
run: |
echo "@RHEcosystemAppEng:registry=https://npm.pkg.github.com" > ~/.npmrc
echo "@fabric8-analytics:registry=https://npm.pkg.github.com" >> ~/.npmrc
- name: Install @vscode/vsce
run: npm i -g @vscode/vsce
- name: Install Dependencies
run: npm ci
- name: Compile for test
run: npm run test-compile
- name: VSCE prepublish
run: vsce package
- name: Lint code
run: npm run lint
- name: Run headless test
uses: coactions/setup-xvfb@v1
with:
run: npm test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: Extension Build For PR ${{ github.event.pull_request.number }}
path: ./*.vsix