Skip to content

Commit

Permalink
Travis -> GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
UserNotFound committed Jul 8, 2024
1 parent e9438da commit d08a9fb
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
test:
name: Test
runs-on: ubuntu-20.04
steps:
- name: Check out code
uses: actions/checkout@v4

- name: Add Chrome
uses: browser-actions/setup-chrome@v1
with:
chrome-version: stable
install-chromedriver: true
install-dependencies: true

- name: Install node
uses: actions/setup-node@v4
with:
node-version: "0.10"

- name: Setup
run: |
npm install -g bower
npm install
bower install
- name: Test
run: npm test

0 comments on commit d08a9fb

Please sign in to comment.