This repository has been archived by the owner on Oct 14, 2024. It is now read-only.
网页布局 - 如何利用 CSS 中的 Grid 和 Flex 创建响应式网页 (#1189) #852
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: CI & CD | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
Lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 'lts/*' | |
- name: Install & Lint | |
run: | | |
npm install | |
npm run lint |