Skip to content

Commit

Permalink
chore: adds GH test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Pixelik committed Aug 2, 2023
1 parent 995874e commit e018646
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Test

on:
push:
branches:
- master
pull_request: {}

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

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
cache: yarn
- run: yarn install
- run: yarn lint:js
- run: yarn test
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
npm-debug.log*
yarn-error.log
testem.log
./DS_Store

# ember-try
.node_modules.ember-try/
Expand Down

0 comments on commit e018646

Please sign in to comment.