From: Eduardo San Martin Morote Date: Mon, 29 Mar 2021 11:58:32 +0000 (+0200) Subject: ci: test github ci X-Git-Tag: v2.0.0-alpha.8~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=572d315dd86f3b89b47aeb0347e07effa2dc682e;p=thirdparty%2Fvuejs%2Fpinia.git ci: test github ci --- diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 00000000..20fe3547 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,17 @@ +name: test + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - uses: bahmutov/npm-install@v1 + - run: npm run test + - run: npm run codecov