Skip to content

Commit

Permalink
Github actions (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
Will Scullin authored Mar 27, 2024
1 parent 275cf90 commit 2bdcdf3
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

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 build
npm run lint

0 comments on commit 2bdcdf3

Please sign in to comment.