Skip to content

Commit

Permalink
Add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
hexmode committed Oct 17, 2023
1 parent 34edcdc commit a6e9ed8
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: CI

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: php-actions/composer@v6
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm i
- run: composer install
- run: composer test
- run: composer error-format-test

0 comments on commit a6e9ed8

Please sign in to comment.