Skip to content

Commit

Permalink
Migrate repo to use GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonroelofs committed Mar 21, 2024
1 parent 0110dd8 commit dbd929e
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: CI

on:
push: {}
pull_request: {}

defaults:
run:
shell: bash

jobs:
test:
name: Test Node ${{ matrix.node }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4

- name: Install Dependencies
run: |
npm install
- name: Prettier
run: |
npm run prettier
- name: Lint
run: |
npm run lint
- name: Build
run: |
npm run build
- name: Test
run: |
npm run test

0 comments on commit dbd929e

Please sign in to comment.