diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..4e8cfdb --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,19 @@ +name: Test and Deploy +on: + - push + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - name: Get code + uses: actions/checkout@v3 + - name: Install nodeJS + uses: actions/setup-node@v3 + with: + node-version: 20 + - name: Install Dependencies + run: npm ci + - name: Run linter + run: npm lint + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1377554 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.swp