Skip to content

Commit

Permalink
Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Will Scullin committed Mar 27, 2024
1 parent fc087c7 commit f683f4f
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Test

on:
pull_request:
push:
branches:
- main
- whscullin/actions

jobs:
test-all:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Install
run: npm ci --loglevel error
- name: Build and Test
run: |
npm run lint

0 comments on commit f683f4f

Please sign in to comment.