File tree
Expand file treeCollapse file tree5 files changed
+75
-24
lines changed Expand file treeCollapse file tree5 files changed
+75
-24
lines changed Original file line number | Diff line number | Diff line change |
---|
|
| 1 | +name: CI |
| 2 | + |
| 3 | +on: |
| 4 | +push: |
| 5 | +branches: [ master ] |
| 6 | +pull_request: |
| 7 | +branches: [ master ] |
| 8 | + |
| 9 | +jobs: |
| 10 | +linux: |
| 11 | +name: Linux |
| 12 | +runs-on: ubuntu-latest |
| 13 | +timeout-minutes: 30 |
| 14 | +steps: |
| 15 | +- uses: actions/checkout@v2 |
| 16 | + |
| 17 | +- name: Setup Node.js environment |
| 18 | +uses: actions/setup-node@v2 |
| 19 | +with: |
| 20 | +node-version: 12 |
| 21 | + |
| 22 | +- name: Install Node.js modules |
| 23 | +run: npm install |
| 24 | + |
| 25 | +- name: Lint |
| 26 | +run: npm run lint |
| 27 | + |
| 28 | +- name: VSCE Packge |
| 29 | +run: npx vsce package |
| 30 | + |
| 31 | +windows: |
| 32 | +name: Windows |
| 33 | +runs-on: windows-latest |
| 34 | +timeout-minutes: 30 |
| 35 | +steps: |
| 36 | +- uses: actions/checkout@v2 |
| 37 | + |
| 38 | +- name: Setup Node.js environment |
| 39 | +uses: actions/setup-node@v2 |
| 40 | +with: |
| 41 | +node-version: 12 |
| 42 | + |
| 43 | +- name: Install Node.js modules |
| 44 | +run: npm install |
| 45 | + |
| 46 | +- name: Lint |
| 47 | +run: npm run lint |
| 48 | + |
| 49 | +- name: VSCE Packge |
| 50 | +run: npx vsce package |
| 51 | + |
| 52 | +darwin: |
| 53 | +name: macOS |
| 54 | +runs-on: macos-latest |
| 55 | +timeout-minutes: 30 |
| 56 | +steps: |
| 57 | +- uses: actions/checkout@v2 |
| 58 | + |
| 59 | +- name: Setup Node.js environment |
| 60 | +uses: actions/setup-node@v2 |
| 61 | +with: |
| 62 | +node-version: 12 |
| 63 | + |
| 64 | +- name: Install Node.js modules |
| 65 | +run: npm install |
| 66 | + |
| 67 | +- name: Lint |
| 68 | +run: npm run lint |
| 69 | + |
| 70 | +- name: VSCE Packge |
| 71 | +run: npx vsce package |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|
|
5 | 5 | src/**
|
6 | 6 | **/*.map
|
7 | 7 | .gitignore
|
8 |
| -.travis.yml |
9 | 8 | package-lock.json
|
10 | 9 | tsconfig.json
|
11 | 10 | tslint.json
|
|
Original file line number | Diff line number | Diff line change |
---|
|
6 | 6 | <img src="https://raw.usercontent.com/LeetCode-OpenSource/vscode-leetcode/master/resources/LeetCode.png" alt="">
|
7 | 7 | </p>
|
8 | 8 | <p align="center">
|
9 |
| -<a href="https://travis-ci.org/LeetCode-OpenSource/vscode-leetcode"> |
10 |
| -<img src="https://img.shields.io/travis/LeetCode-OpenSource/vscode-leetcode.svg?style=flat-square" alt=""> |
| 9 | +<a href="https://.com/LeetCode-OpenSource/vscode-leetcode/actions?query=workflow%3ACI+branch%3Amaster"> |
| 10 | +<img src="https://img.shields.io//workflow/status/LeetCode-OpenSource/vscode-leetcode/CI/master?style=flat-square" alt=""> |
11 | 11 | </a>
|
12 | 12 | <a href="https://gitter.im/vscode-leetcode/Lobby">
|
13 | 13 | <img src="https://img.shields.io/gitter/room/LeetCode-OpenSource/vscode-leetcode.svg?style=flat-square" alt="">
|
|
Original file line number | Diff line number | Diff line change |
---|
|
6 | 6 | <img src="https://raw.usercontent.com/LeetCode-OpenSource/vscode-leetcode/master/resources/LeetCode.png" alt="">
|
7 | 7 | </p>
|
8 | 8 | <p align="center">
|
9 |
| -<a href="https://travis-ci.org/LeetCode-OpenSource/vscode-leetcode"> |
10 |
| -<img src="https://img.shields.io/travis/LeetCode-OpenSource/vscode-leetcode.svg?style=flat-square" alt=""> |
| 9 | +<a href="https://.com/LeetCode-OpenSource/vscode-leetcode/actions?query=workflow%3ACI+branch%3Amaster"> |
| 10 | +<img src="https://img.shields.io//workflow/status/LeetCode-OpenSource/vscode-leetcode/CI/master?style=flat-square" alt=""> |
11 | 11 | </a>
|
12 | 12 | <a href="https://gitter.im/vscode-leetcode/Lobby">
|
13 | 13 | <img src="https://img.shields.io/gitter/room/LeetCode-OpenSource/vscode-leetcode.svg?style=flat-square" alt="">
|
|
You can’t perform that action at this time.
0 commit comments