Skip to content

Commit

Permalink
* switch to github ci
Browse files Browse the repository at this point in the history
  • Loading branch information
fritx committed Dec 14, 2022
1 parent 072d692 commit 360cce4
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 28 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: test

on:
push:
branches: [dev, master, ci/**]
pull_request:
branches: [dev, master, ci/**]
workflow_dispatch:
# Keep this to allow for triggering manually

jobs:
unit-test:
strategy:
matrix:
node-version:
- 8
- 18
os:
- windows-2019
- ubuntu-20.04
- macos-11

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm install
# - name: Lint
# run: npm run lint
- name: Test
run: npm run test
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# cross-unzip

<a href="https://www.npmjs.com/package/cross-unzip"><img height="20" src="https://img.shields.io/npm/dm/cross-unzip.svg"></a>&nbsp;&nbsp;<a href="https://github.com/fritx/cross-unzip"><img width="90" height="20" src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg" /></a>&nbsp;&nbsp;<a href="https://github.com/fritx/cross-unzip"><img width="84" height="20" src="https://img.shields.io/badge/license-LGPL-yellow.svg"></a>&nbsp;&nbsp;<a href="https://ci.appveyor.com/project/fritx/cross-unzip/branch/dev"><img height="20" src="https://ci.appveyor.com/api/projects/status/2tly5xnv1243l5jo/branch/dev?svg=true"></a>&nbsp;&nbsp;<a href="https://circleci.com/gh/fritx/cross-unzip/tree/dev"><img height="20" src="https://circleci.com/gh/fritx/cross-unzip/tree/dev.svg?style=svg"></a>
<a href="https://www.npmjs.com/package/cross-unzip"><img height="20" src="https://img.shields.io/npm/dm/cross-unzip.svg"></a>&nbsp;&nbsp;<a href="https://github.com/fritx/cross-unzip"><img width="90" height="20" src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg" /></a>&nbsp;&nbsp;<a href="https://github.com/fritx/cross-unzip"><img width="84" height="20" src="https://img.shields.io/badge/license-LGPL-yellow.svg"></a>&nbsp;&nbsp;<a href="https://github.com/fritx/cross-unzip/actions/workflows/test.yml"><img width="100" height="20" src="https://github.com/fritx/cross-unzip/actions/workflows/test.yml/badge.svg"></a>

See also: [win-7zip](https://github.com/fritx/win-7zip), [feross/cross-zip](https://github.com/feross/cross-zip)

Expand Down
24 changes: 0 additions & 24 deletions appveyor.yml

This file was deleted.

3 changes: 0 additions & 3 deletions circle.yml

This file was deleted.

0 comments on commit 360cce4

Please sign in to comment.