Actualizacion maquina principal
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-markdownlint / .github / workflows / ci.yml
1 name: build
2
3 on:
4   push:
5     branches:
6       - master
7   pull_request:
8     branches:
9       - master
10
11 jobs:
12   build:
13     runs-on: ubuntu-latest
14
15     strategy:
16       fail-fast: false
17       matrix:
18         node-version: [13]
19
20     env:
21       NODE_ENV: test
22
23     steps:
24       - uses: actions/checkout@v1
25       - name: Use Node.js ${{ matrix.node-version }}
26         uses: actions/setup-node@v1
27         with:
28           node-version: ${{ matrix.node-version }}
29       - name: Install yarn
30         run: |
31           curl --compressed -o- -L https://yarnpkg.com/install.sh | bash
32       - name: yarn build
33         run: |
34           yarn
35       - name: yarn lint
36         run: |
37           yarn lint