Skip to content

Commit

Permalink
Merge pull request #302 from codefori/feature/vitest
Browse files Browse the repository at this point in the history
Feature/vitest
  • Loading branch information
worksofliam authored Mar 5, 2024
2 parents 4672aa4 + 910961e commit a6aa356
Show file tree
Hide file tree
Showing 17 changed files with 4,114 additions and 3,100 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ on: pull_request

jobs:
release:
name: Validation
name: Create PR build
runs-on: ubuntu-latest
if: contains(github.event.pull_request.labels.*.name, 'build')
steps:
Expand Down
16 changes: 16 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
on:
pull_request:
paths:
- 'language/**'

jobs:
release:
name: Test runner
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 1
- run: npm install
- run: node ./node_modules/eslint/bin/eslint src/** --no-error-on-unmatched-pattern
- run: npm run test
Loading

0 comments on commit a6aa356

Please sign in to comment.