-
Notifications
You must be signed in to change notification settings - Fork 1
77 lines (73 loc) · 2.21 KB
/
auto-merge-dependabot.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# name: Dependabot Auto Merge
# on:
# pull_request:
# jobs:
# auto-merge:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: ahmadnassri/action-dependabot-auto-merge@v2
# with:
# target: minor
# github-token: ${{ secrets.mytoken }}
name: Dependabot Auto Merge
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 18
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-buildWscikit-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-buildWscikit-${{ env.cache-name }}-
${{ runner.os }}-buildWscikit-
${{ runner.os }}-
- name: Install dependencies
run: |
sudo apt-get install --only-upgrade libstdc++6
npm i jest typescript rollup typedoc sitedown -g
npm i @tensorflow/tfjs @tensorflow/tfjs-node scikitjs
npm ls scikitjs
npm ci
- name: Test coverage
run: |
jest --coverage --runInBand --ci --no-cache
- name: Coveralls Parallel
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
parallel: true
path-to-lcov: ./coverage/lcov.info # optional (default value)
- name: Coveralls Finished
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true
- name: build files, docs
run: |
npm run compile
npm run build
automerge:
needs: build
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: fastify/[email protected]
with:
github-token: ${{secrets.GITHUB_TOKEN}}