From 085db689e054302a571cb090d6f06d862c3d294b Mon Sep 17 00:00:00 2001 From: Nemo Date: Fri, 16 Jul 2021 12:33:40 +0530 Subject: [PATCH] Add GitHub Actions for test --- .github/workflows/action.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/action.yml diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml new file mode 100644 index 0000000..8779e4d --- /dev/null +++ b/.github/workflows/action.yml @@ -0,0 +1,13 @@ +on: push +name: Main Workflow +jobs: + runNpmStuff: + name: Run NPM Stuff + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: actions/setup-node@v2 + with: + node-version: '16' + - run: npm install + - run: npm test