Skip to content

Commit

Permalink
Merge pull request #31 from proj4js/modernize
Browse files Browse the repository at this point in the history
Modernize build tooling a little bit
  • Loading branch information
ahocevar authored Oct 10, 2024
2 parents 9b864cc + 5d8b48b commit 7d5c656
Show file tree
Hide file tree
Showing 6 changed files with 1,246 additions and 21 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/pullrequest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Run Tests on Pull Request

on:
pull_request:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'

- name: Install dependencies
run: npm ci

- name: Run tests
run: npm test
Loading

0 comments on commit 7d5c656

Please sign in to comment.