diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index 160c650..cbc942f 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -2,15 +2,15 @@ name: linting on: pull_request: - branches: [ main ] + branches: [main] push: - branches: [ main ] + branches: [main] jobs: linting: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install modules run: npm install - name: Run linting - run: npm run lint; \ No newline at end of file + run: npm run lint; diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 1d808c9..c6ed19f 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -9,8 +9,8 @@ jobs: unit-tests: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install modules run: npm install - name: Run tests - run: npm run test:ci \ No newline at end of file + run: npm run test:ci diff --git a/apps/website/.stylelintignore b/apps/website/.stylelintignore index 1380c2e..719c5af 100644 --- a/apps/website/.stylelintignore +++ b/apps/website/.stylelintignore @@ -1,2 +1,3 @@ node_modules -.next \ No newline at end of file +.next +coverage \ No newline at end of file