Skip to content

Commit b1e7945

Browse files
committed
Move from travis to github actions
1 parent 43e7fe3 commit b1e7945

File tree

2 files changed

+20
-12
lines changed

2 files changed

+20
-12
lines changed

.github/workflows/test.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Test
2+
3+
on:
4+
workflow_dispatch:
5+
pull_request:
6+
push:
7+
branches:
8+
- main
9+
10+
jobs:
11+
test:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-node@v4
16+
with:
17+
node-version: lts/*
18+
cache: yarn
19+
- run: yarn
20+
- run: yarn test

.travis.yml

-12
This file was deleted.

0 commit comments

Comments
 (0)