diff --git a/.eslintrc b/.eslintrc index 3b5b9123..74b88ae2 100644 --- a/.eslintrc +++ b/.eslintrc @@ -5,6 +5,9 @@ "error", {"allowExpressions": true} ], + "n/no-extraneous-require": ["error", { + "allowModules": ["sass"] + }], "func-style": ["error", "declaration"], "prefer-const": ["error", {"destructuring": "all"}], // It would be nice to sort import declaration order as well, but that's not diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c16c75c3..2712bd6d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-node@v4 with: node-version: 'lts/*' @@ -46,7 +46,7 @@ jobs: fail-fast: false steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} @@ -89,7 +89,7 @@ jobs: node_version: lts/-2 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: dart-lang/setup-dart@v1 with: {sdk: stable} - uses: actions/setup-node@v4 @@ -130,7 +130,7 @@ jobs: needs: [static_analysis, tests, sass_spec] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-node@v4 with: node-version: 'lts/*'