Skip to content

Commit

Permalink
Migrate from travis to github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ggetz committed Oct 19, 2023
1 parent d5a29d9 commit 7548905
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 6 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
run-name: main
on: push
jobs:
node_18:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install node 18
uses: actions/setup-node@v3
with:
node-version: '18'
- name: install
run: npm install
- name: build
run: npm run build
node_16:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install node 16
uses: actions/setup-node@v3
with:
node-version: '16'
- name: install
run: npm install
- name: build
run: npm run build

6 changes: 0 additions & 6 deletions .travis.yml

This file was deleted.

0 comments on commit 7548905

Please sign in to comment.