Skip to content

Commit

Permalink
Merge pull request #12 from arshadkazmi42/change-travis-github
Browse files Browse the repository at this point in the history
Change travis to github workflow
  • Loading branch information
arshadkazmi42 authored Jul 11, 2022
2 parents 09bc619 + 8003801 commit 0c233c2
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github: arshadkazmi42
26 changes: 26 additions & 0 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Node CI

on: [push]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [8.x, 10.x, 12.x, 14.x, 16.x]

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm install
npm run build --if-present
npm test
env:
CI: true
3 changes: 0 additions & 3 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# search-a-tags

[![Build Status](https://travis-ci.com/arshadkazmi42/search-a-tags.svg?branch=master)](https://travis-ci.com/arshadkazmi42/search-a-tags)
[![Build](https://github.com/arshadkazmi42/search-a-tags/actions/workflows/nodejs.yml/badge.svg)](https://github.com/arshadkazmi42/search-a-tags/actions/workflows/nodejs.yml)

Search `<a>` tags of HTML from HTML content

Expand Down

0 comments on commit 0c233c2

Please sign in to comment.