diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 736df51c..d7ca9072 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -28,7 +28,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 - name: Build JS bundle run: npm install - name: Build site diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index c9ff39d4..76a22f51 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -3,16 +3,16 @@ name: Check lints on: [pull_request, push] jobs: - lint: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: 18 - - name: Install dependencies - run: npm install - - name: Lints - run: npm run lint + lint: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: 20 + - name: Install dependencies + run: npm install + - name: Lints + run: npm run lint diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a26a2cfb..223c6951 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -3,20 +3,20 @@ name: Check tests on: [pull_request, push] jobs: - test: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Setup Chrome - run: sudo apt update && sudo apt install -y google-chrome-stable - - run: /usr/bin/google-chrome-stable --version - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: 18 - - name: Install dependencies - run: npm install - - uses: jamesmortensen/chromedriver-matcher-action@v1 - - name: Tests - run: npm test + test: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Setup Chrome + run: sudo apt update && sudo apt install -y google-chrome-stable + - run: /usr/bin/google-chrome-stable --version + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: 20 + - name: Install dependencies + run: npm install + - uses: jamesmortensen/chromedriver-matcher-action@v1 + - name: Tests + run: npm test