Skip to content

fix: Add missing packages (#132) #48

fix: Add missing packages (#132)

fix: Add missing packages (#132) #48

Workflow file for this run

name: Release
on:
workflow_dispatch:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js LTS
uses: actions/setup-node@v3
with:
node-version: lts/*
- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- run: npm install --no-package-lock
name: Install dependencies
- run: |
npm run lint
npm run js:lint
name: Linter
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
name: Release