Update simple-icons to 13.16.0 #1614
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Verify | |
on: [pull_request, push] | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- uses: actions/cache@v2 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: Install dependencies | |
run: npm ci --no-audit | |
- name: Run linter | |
run: npm run lint | |
test: | |
name: Test website | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- uses: actions/cache@v2 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: Cache build | |
uses: actions/cache@v2 | |
with: | |
path: .cache/webpack | |
key: ${{ runner.os }}-build-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-build- | |
- name: Cache Jest | |
uses: actions/cache@v2 | |
with: | |
path: .cache/jest | |
key: ${{ runner.os }}-jest-${{ hashFiles('package-lock.json') }}-${{ github.run_number }} | |
restore-keys: | | |
${{ runner.os }}-jest-${{ hashFiles('package-lock.json') }}- | |
${{ runner.os }}-jest- | |
- name: Install dependencies | |
run: npm ci --no-audit | |
- name: Run unit tests | |
run: npm run test:unit | |
- name: Run end-to-end tests | |
run: npm run test:e2e -- --runInBand | |
- name: Upload test screenshots | |
uses: actions/upload-artifact@v3 | |
with: | |
name: preview | |
path: tests/_artifacts/*.png |