Skip to content
This repository was archived by the owner on Jan 6, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ module.exports = {
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/interface-name-prefix': 'off',
},
overrides: [
{
Expand Down
22 changes: 2 additions & 20 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,6 @@ name: toolkit-ci
on: pull_request

jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2

- name: Setup Node 💾
uses: actions/setup-node@v2
with:
node-version: '14'

- name: Install Dependencies 📥
run: npm install

- name: Run Tests 🧪
run: npm run test

lint:
runs-on: ubuntu-latest
timeout-minutes: 10
Expand All @@ -31,7 +13,7 @@ jobs:
- name: Setup Node 💾
uses: actions/setup-node@v2
with:
node-version: '14'
node-version: '18'

- name: Install Dependencies 📥
run: npm install
Expand All @@ -52,7 +34,7 @@ jobs:
- name: Setup Node 💾
uses: actions/setup-node@v2
with:
node-version: '14'
node-version: '18'

- name: Install Dependencies 📥
run: npm install
Expand Down
22 changes: 4 additions & 18 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,32 +41,18 @@ stages:
$(Build.SourcesDirectory)/**/*.ts
ErrorLevel: 'warn'

- stage: build_test
displayName: 'Build & Test'
- stage: build_lint
displayName: 'Build & Lint'
pool:
vmImage: 'ubuntu-latest'
jobs:
- job: test
timeoutInMinutes: 10
steps:
- task: NodeTool@0
displayName: 'Setup Node 💾'
inputs:
versionSpec: '14.x'

- script: npm install
displayName: 'Install Dependencies 📥'

- script: npm run test
displayName: 'Run Tests 🧪'

- job: lint
timeoutInMinutes: 10
steps:
- task: NodeTool@0
displayName: 'Setup Node 💾'
inputs:
versionSpec: '14.x'
versionSpec: '18.x'

- script: npm install
displayName: 'Install Dependencies 📥'
Expand All @@ -83,7 +69,7 @@ stages:
- task: NodeTool@0
displayName: 'Setup Node 💾'
inputs:
versionSpec: '14.x'
versionSpec: '18.x'

- script: npm install
displayName: 'Install Dependencies 📥'
Expand Down
Loading