Skip to content

Commit

Permalink
Merge pull request #65 from mapbox/fix_gha
Browse files Browse the repository at this point in the history
fix GHA
  • Loading branch information
davojta authored Jan 22, 2025
2 parents 55a23f7 + ca3f0e0 commit 3c39568
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 25 deletions.
25 changes: 0 additions & 25 deletions .github/workflow/tests.yml

This file was deleted.

23 changes: 23 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Tests
run-name: Tests

on:
push:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref_name != 'main' }}

jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- run: |
npm ci
- run: |
npm run test

0 comments on commit 3c39568

Please sign in to comment.