Skip to content

Commit

Permalink
switch from Travis to GH Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mourner committed Jun 25, 2024
1 parent 1202d08 commit b312a5a
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 3 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Node
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: 20

- name: Install dependencies
run: npm ci

- name: Build the bundle
run: npm run build

- name: Run tests
run: npm test
3 changes: 0 additions & 3 deletions .travis.yml

This file was deleted.

0 comments on commit b312a5a

Please sign in to comment.