Skip to content

Commit

Permalink
[skip ci] Merge pull request #41 from mhassan1/github-actions
Browse files Browse the repository at this point in the history
chore: move from travis to github actions
  • Loading branch information
mhassan1 authored Dec 20, 2024
2 parents befa749 + d234916 commit 547bf17
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 15 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Test

on:
workflow_dispatch:
pull_request:
push:
branches:
- main

jobs:
test:
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: yarn
- run: yarn
- run: yarn test
15 changes: 0 additions & 15 deletions .travis.yml

This file was deleted.

0 comments on commit 547bf17

Please sign in to comment.