summaryrefslogtreecommitdiff
path: root/.config/coc/extensions/node_modules/coc-go/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.config/coc/extensions/node_modules/coc-go/.github/workflows')
-rw-r--r--.config/coc/extensions/node_modules/coc-go/.github/workflows/main.yml19
-rw-r--r--.config/coc/extensions/node_modules/coc-go/.github/workflows/update-settings.yml34
2 files changed, 0 insertions, 53 deletions
diff --git a/.config/coc/extensions/node_modules/coc-go/.github/workflows/main.yml b/.config/coc/extensions/node_modules/coc-go/.github/workflows/main.yml
deleted file mode 100644
index d34708f..0000000
--- a/.config/coc/extensions/node_modules/coc-go/.github/workflows/main.yml
+++ /dev/null
@@ -1,19 +0,0 @@
-name: Main
-
-on: push
-
-jobs:
- main:
- runs-on: ${{ matrix.os }}
- strategy:
- matrix:
- os: [ubuntu-latest, macos-latest, windows-latest]
- node: [12, 14, 16]
- steps:
- - uses: actions/checkout@v2
- - uses: actions/setup-node@v1
- with: { node-version: "${{ matrix.node }}" }
- - run: yarn --frozen-lockfile
- - run: yarn build
- - run: yarn lint
- - run: yarn test
diff --git a/.config/coc/extensions/node_modules/coc-go/.github/workflows/update-settings.yml b/.config/coc/extensions/node_modules/coc-go/.github/workflows/update-settings.yml
deleted file mode 100644
index 48219bc..0000000
--- a/.config/coc/extensions/node_modules/coc-go/.github/workflows/update-settings.yml
+++ /dev/null
@@ -1,34 +0,0 @@
-name: update-settings
-
-on:
- push:
- branches: [ master ]
- schedule:
- - cron: '0 * * * *'
-
-jobs:
- main:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- with: { ref: master }
- - uses: actions/setup-node@v1
- with: { node-version: '12' }
- - run: ./scripts/update-commands.js
- - run: ./scripts/update-options.js
- - run: ./scripts/update-options-interface.js
- - run: ./scripts/update-snippets.js
- - run: ./scripts/update-tables.sh
- - run: git diff
- - run: yarn --frozen-lockfile
- - run: yarn build
- - run: yarn lint
- - run: yarn test
- - uses: EndBug/add-and-commit@v5
- with:
- push: true
- author_name: Github Action
- author_email: josa@gesell.me
- message: '[auto] Update Settings'
- env:
- GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'