[add-lint-and-ci] - added lint, ci and boilerplate for plugin building

This commit is contained in:
Guilherme Leme
2024-06-19 12:34:32 -03:00
parent 9496076bab
commit a2b1373008
15 changed files with 470 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
name: Typescript - compile code
on: [pull_request]
permissions:
contents: read
jobs:
ts-code-compilation:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Merge branches
uses: ./.github/actions/merge-branches
- name: install node
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: run npm install
run: npm install
- name: typescript code compilation
run: npx tsc