Skip to content

Commit

Permalink
Switch to Github actions for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
marijnh committed Dec 11, 2020
1 parent 85ce0a5 commit c20e05a
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 18 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: ci
on: [push]
jobs:
build-and-test:
runs-on: ubuntu-latest
name: Build and test
steps:
- uses: actions/checkout@v1
- uses: bahmutov/npm-install@v1
with:
useLockFile: false
- run: npm test
- run: npm run test:test262
17 changes: 0 additions & 17 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Acorn

[![Build Status](https://travis-ci.org/acornjs/acorn.svg?branch=master)](https://travis-ci.org/acornjs/acorn)
[![Build Status](https://github.com/acornjs/acorn/workflows/ci/badge.svg)](https://github.com/acornjs/acorn/actions)
[![NPM version](https://img.shields.io/npm/v/acorn.svg)](https://www.npmjs.com/package/acorn)
[![CDNJS](https://img.shields.io/cdnjs/v/acorn.svg)](https://cdnjs.com/libraries/acorn)

Expand Down

0 comments on commit c20e05a

Please sign in to comment.