pull/2766/head
Alex Dima 2021-11-12 21:48:52 +01:00
parent e717007697
commit 59484624a4
No known key found for this signature in database
GPG Key ID: 39563C1504FDD0C9
1 changed files with 36 additions and 0 deletions

36
.github/workflows/ci.yml vendored 100644
View File

@ -0,0 +1,36 @@
name: CI
on: [push, pull_request]
jobs:
build:
name: 'Builds'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14
- name: Cache node modules
id: cacheNodeModules
uses: actions/cache@v2
with:
path: "**/node_modules"
key: ${{ runner.os }}-cacheNodeModules-${{ hashFiles('**/package-lock.json') }}
restore-keys: ${{ runner.os }}-cacheNodeModules-
- name: Execute npm in root
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
run: npm install
- name: Execute npm in monaco-editor-webpack-plugin
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
run: npm install --prefix monaco-editor-webpack-plugin
- name: Build
run: npm run release
- name: Run unit tests
run: npm test