-
Notifications
You must be signed in to change notification settings - Fork 679
π Daily Challenges & Smart C++ Templates - Enhanced LeetCode VS Code Extension #135
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
linux:
name: Linux
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v2
- name: Setup Node.js environment
uses: actions/setup-node@v2
with:
node-version: 14
- name: Install Node.js modules
run: npm install
- name: Lint
run: npm run lint
- name: VSCE Packge
run: npx vsce package
windows:
name: Windows
runs-on: windows-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v2
- name: Setup Node.js environment
uses: actions/setup-node@v2
with:
node-version: 14
- name: Install Node.js modules
run: npm install
- name: Lint
run: npm run lint
- name: VSCE Packge
run: npx vsce package