Skip to content
This repository has been archived by the owner on Sep 1, 2024. It is now read-only.

build/deps: bump tldts-experimental from 6.1.37 to 6.1.39 #133

build/deps: bump tldts-experimental from 6.1.37 to 6.1.39

build/deps: bump tldts-experimental from 6.1.37 to 6.1.39 #133

Workflow file for this run

name: Build
on:
push:
paths-ignore:
- "README.md"
- ".github/**"
pull_request:
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm ci
- run: npm run lint
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: sudo apt-get -y install pandoc
- uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm ci
- run: npm run build
- uses: actions/upload-artifact@v4
with:
name: web-ext-artifacts
path: web-ext-artifacts/*.zip
lint-build:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- uses: actions/download-artifact@v4
with:
name: web-ext-artifacts
path: web-ext-artifacts
- run: npm ci
- run: npm run lint-build