Skip to content

Commit

Permalink
ci: add job build && imporve workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
uiolee committed Feb 2, 2024
1 parent ec84fda commit 8624cbe
Show file tree
Hide file tree
Showing 3 changed files with 90 additions and 80 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
34 changes: 0 additions & 34 deletions .github/workflows/linter.yml

This file was deleted.

46 changes: 0 additions & 46 deletions .github/workflows/tester.yml

This file was deleted.

0 comments on commit 8624cbe

Please sign in to comment.