Skip to content

Commit 84e6aeb

Browse files
committed
feat: rename actions
1 parent cade95e commit 84e6aeb

File tree

2 files changed

+9
-16
lines changed

2 files changed

+9
-16
lines changed

.github/workflows/lint.yml

+8-12
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,20 @@
11
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
22
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3-
43
name: Run Linter
54

65
on: [push]
76
jobs:
8-
build:
9-
7+
lint:
108
runs-on: ubuntu-latest
11-
129
strategy:
1310
matrix:
1411
node-version: [14.x, 15.x]
1512
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
16-
1713
steps:
18-
- uses: actions/checkout@v2
19-
- name: Use Node.js ${{ matrix.node-version }}
20-
uses: actions/setup-node@v1
21-
with:
22-
node-version: ${{ matrix.node-version }}
23-
- run: npm install
24-
- run: npm run lint
14+
- uses: actions/checkout@v2
15+
- name: Use Node.js ${{ matrix.node-version }}
16+
uses: actions/setup-node@v1
17+
with:
18+
node-version: ${{ matrix.node-version }}
19+
- run: npm install
20+
- run: npm run lint

.github/workflows/typecheck.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,12 @@ name: Typecheck Files
55

66
on: [push]
77
jobs:
8-
build:
9-
8+
typecheck:
109
runs-on: ubuntu-latest
11-
1210
strategy:
1311
matrix:
1412
node-version: [14.x, 15.x]
1513
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
16-
1714
steps:
1815
- uses: actions/checkout@v2
1916
- name: Use Node.js ${{ matrix.node-version }}

0 commit comments

Comments
 (0)