Skip to content

Commit

Permalink
feat: added testing github action
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoEscaleira committed Mar 14, 2024
1 parent 5bb8a73 commit a47fe51
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Testing CI

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
test:
runs-on: ubuntu-latest
name: 'Test'

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'

- run: yarn
- run: yarn lint

0 comments on commit a47fe51

Please sign in to comment.