* add adapter-dev, remove gulp

* add more guidance on how to call
* update deps
This commit is contained in:
Ingo Fischer
2022-12-08 23:06:36 +01:00
parent 88d027d575
commit ad8f360c17
8 changed files with 6404 additions and 445 deletions
+9 -5
View File
@@ -16,6 +16,10 @@ on:
- "v?[0-9]+.[0-9]+.[0-9]+-**"
pull_request: {}
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
# Performs quick checks before the expensive test runs
check-and-lint:
@@ -25,7 +29,7 @@ jobs:
strategy:
matrix:
node-version: [12.x]
node-version: [16.x]
steps:
- uses: actions/checkout@v3
@@ -36,7 +40,7 @@ jobs:
- name: Install Dependencies
run: npm install
run: npm ci
# - name: Perform a type check
# run: npm run check:ts
@@ -67,7 +71,7 @@ jobs:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm install
run: npm ci
- name: Run local tests
run: npm test
@@ -92,7 +96,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
node-version: [16.x]
steps:
- name: Checkout code
@@ -118,7 +122,7 @@ jobs:
echo "::set-output name=BODY::$BODY"
- name: Install Dependencies
run: npm install
run: npm ci
# - name: Create a clean build
# run: npm run build