Skip to content

Commit

Permalink
ci: add lint, build
Browse files Browse the repository at this point in the history
  • Loading branch information
uiolee committed Feb 2, 2024
1 parent 3de738e commit 4d11f39
Show file tree
Hide file tree
Showing 3 changed files with 90 additions and 59 deletions.
90 changes: 90 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
name: CI

on:
push:
branches:
- "master"
pull_request:

env:
default_node_version: 14

jobs:
test:
name: Test
needs: build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: ["14", "16", "18"]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }} and Cache
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
cache-dependency-path: "package.json"

- name: Install Dependencies
run: npm install
- name: Test
run: npm run test

coverage:
name: Coverage
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js ${{env.default_node_version}} and Cache
uses: actions/setup-node@v4
with:
node-version: ${{env.default_node_version}}
cache: npm
cache-dependency-path: "package.json"

- name: Install Dependencies
run: npm install
- name: Coverage
run: npm run test-cov
- name: Coveralls
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.github_token }}

build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js ${{env.default_node_version}} and Cache
uses: actions/setup-node@v4
with:
node-version: ${{env.default_node_version}}
cache: npm
cache-dependency-path: "package.json"

- name: Install Dependencies
run: npm install
- name: Build
run: npm run build

lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js ${{env.default_node_version}} and Cache
uses: actions/setup-node@v4
with:
node-version: ${{env.default_node_version}}
cache: npm
cache-dependency-path: "package.json"

- name: Install Dependencies
run: npm install
- name: Lint
run: npm run eslint
58 changes: 0 additions & 58 deletions .github/workflows/tester.yml

This file was deleted.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
"build": "tsc -b",
"clean": "tsc -b --clean",
"eslint": "eslint .",
"pretest": "npm run clean && npm run build",
"test": "mocha test/index.js --require ts-node/register",
"test-cov": "c8 --reporter=lcovonly npm run test"
},
Expand Down

0 comments on commit 4d11f39

Please sign in to comment.