Skip to content

Commit

Permalink
switch from Travis to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mourner committed Feb 9, 2024
1 parent 1b6a30c commit d017662
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/node.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Node

Check failure on line 1 in .github/workflows/node.yaml

View workflow job for this annotation

GitHub Actions / test

.github/workflows/node.yaml#L1

This run was manually canceled.
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: 18

- name: Install dependencies
run: npm ci

- name: Build the bundle
run: npm run build

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

This file was deleted.

0 comments on commit d017662

Please sign in to comment.