diff options
| author | Jacob McDonnell <jacob@simplelittledream.com> | 2022-07-16 18:13:16 -0400 |
|---|---|---|
| committer | Jacob McDonnell <jacob@simplelittledream.com> | 2022-07-16 18:13:16 -0400 |
| commit | 8fad9a5ecddc88d57a531e4b0084544984f23d25 (patch) | |
| tree | 84954bc8219942aa56bc899330ccd0007bbe0ef0 /.config/coc/extensions/node_modules/coc-go/.github/workflows/main.yml | |
| parent | 2887af7fcfb4d618dd13cf66ec2fbdbd84c7527c (diff) | |
Added profile and other missing configs
Diffstat (limited to '.config/coc/extensions/node_modules/coc-go/.github/workflows/main.yml')
| -rw-r--r-- | .config/coc/extensions/node_modules/coc-go/.github/workflows/main.yml | 19 |
1 files changed, 19 insertions, 0 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 new file mode 100644 index 0000000..d34708f --- /dev/null +++ b/.config/coc/extensions/node_modules/coc-go/.github/workflows/main.yml @@ -0,0 +1,19 @@ +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 |
