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 02ce3b2 commit 9b266fe
Show file tree
Hide file tree
Showing 4 changed files with 92 additions and 49 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
46 changes: 0 additions & 46 deletions .github/workflows/tester.yml

This file was deleted.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# hexo-fs

[![Build Status](https://github.com/hexojs/hexo-fs/workflows/Tester/badge.svg)](https://github.com/hexojs/hexo-fs/actions?query=workflow%3ATester)
[![CI](https://github.com/hexojs/hexo-fs/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/hexojs/hexo-fs/actions/workflows/ci.yml)
[![NPM version](https://badge.fury.io/js/hexo-fs.svg)](https://www.npmjs.com/package/hexo-fs)
[![Coverage Status](https://img.shields.io/coveralls/hexojs/hexo-fs.svg)](https://coveralls.io/r/hexojs/hexo-fs?branch=master)
[![Coverage Status](https://coveralls.io/repos/github/hexojs/hexo-fs/badge.svg)](https://coveralls.io/github/hexojs/hexo-fs)

File system module for [Hexo].

Expand Down
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 9b266fe

Please sign in to comment.