Skip to content

Commit

Permalink
Add test github action
Browse files Browse the repository at this point in the history
  • Loading branch information
Americas committed Jan 3, 2024
1 parent 02e533d commit acffbe6
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Test

on: push

jobs:
unit:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 20.x
- run: corepack enable
- run: yarn install --frozen-lockfile
- run: yarn lint
- run: yarn test

0 comments on commit acffbe6

Please sign in to comment.