Skip to content

Commit

Permalink
Replace travis ci with github action
Browse files Browse the repository at this point in the history
  • Loading branch information
vladshcherbin committed Sep 8, 2024
1 parent 9297dd7 commit 038e4dc
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 8 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Node.js CI
on:
push:
branches: master
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10, 12, 14, 16, 18, 20, 22]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run tests
run: yarn test --ci --coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
7 changes: 0 additions & 7 deletions .travis.yml

This file was deleted.

1 change: 0 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# rollup-plugin-delete

[![Build Status](https://travis-ci.org/vladshcherbin/rollup-plugin-delete.svg?branch=master)](https://travis-ci.org/vladshcherbin/rollup-plugin-delete)
[![Codecov](https://codecov.io/gh/vladshcherbin/rollup-plugin-delete/branch/master/graph/badge.svg)](https://codecov.io/gh/vladshcherbin/rollup-plugin-delete)

Delete files and folders using Rollup.
Expand Down

0 comments on commit 038e4dc

Please sign in to comment.