Skip to content

Commit

Permalink
test: goodbye travis, hello github
Browse files Browse the repository at this point in the history
  • Loading branch information
kaelzhang committed Aug 11, 2023
1 parent 9671f1b commit a72016b
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 4 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: build

on: [push]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm install
npm run build --if-present
npm test
env:
CI: true
4 changes: 0 additions & 4 deletions .travis.yml

This file was deleted.

0 comments on commit a72016b

Please sign in to comment.