From e0186461291798da658319d7dcfa8c4f33995cba Mon Sep 17 00:00:00 2001 From: Nicolas Martinos Date: Wed, 2 Aug 2023 14:26:36 +0300 Subject: [PATCH] chore: adds GH test workflow --- .github/workflows/test.yml | 22 ++++++++++++++++++++++ .gitignore | 1 + 2 files changed, 23 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..efeec32 --- /dev/null +++ b/.github/workflows/test.yml @@ -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 \ No newline at end of file diff --git a/.gitignore b/.gitignore index 8fa39a6..c093d80 100644 --- a/.gitignore +++ b/.gitignore @@ -16,6 +16,7 @@ npm-debug.log* yarn-error.log testem.log +./DS_Store # ember-try .node_modules.ember-try/