Skip to content

Commit

Permalink
Merge pull request #149 from mapbox/migrate-travis-gha
Browse files Browse the repository at this point in the history
migrate from travis to gha
  • Loading branch information
ryndaniels committed Jun 17, 2024
2 parents 29d3783 + 465cad9 commit 7d8096a
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 10 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: mapbox/cloudfriend
on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
test:
strategy:
matrix:
node-version: [14, 16, 18]
runs-on: ubuntu-22.04
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.7.17'
- name: pip install
run: |
pip install -r requirements.dev.txt
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: |
npm ci
- run: |
npm run test
10 changes: 0 additions & 10 deletions .travis.yml

This file was deleted.

0 comments on commit 7d8096a

Please sign in to comment.