Skip to content

Bump tar from 6.2.0 to 6.2.1 #236

Bump tar from 6.2.0 to 6.2.1

Bump tar from 6.2.0 to 6.2.1 #236

Workflow file for this run

---
name: CI
on:
pull_request:
types:
- opened
- reopened
- synchronize
jobs:
lint_js:
name: Lint (JS)
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install
run: npm ci
- name: Lint
run: npm run lint:js
lint_css:
name: Lint (CSS)
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install
run: npm ci
- name: Lint
run: npm run lint:css
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install
run: npm ci
- name: Build
run: npm run build