Skip to content

Обновление зависимостей и настроек #15

Обновление зависимостей и настроек

Обновление зависимостей и настроек #15

Workflow file for this run

name: Action
on:
push:
branches:
- main
jobs:
ci:
name: CI
if: ${{ ! contains(github.event.head_commit.message, '[skip') }}
runs-on: ubuntu-latest
steps:
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: "18"
- name: Checkout
uses: actions/checkout@master
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
# - name: Build
# run: npm run build
# - name: Deploy to GitHub Pages
# uses: peaceiris/actions-gh-pages@v3
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
# publish_dir: ./dist