mirror of
https://github.com/CorentinTh/it-tools.git
synced 2024-11-15 21:54:30 +08:00
38 lines
743 B
YAML
38 lines
743 B
YAML
name: ci
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
ci:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@master
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Setup node env
|
|
uses: actions/setup-node@v3.0.0
|
|
with:
|
|
node-version: 16
|
|
|
|
- name: Cache node_modules
|
|
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
|
|
|
|
- name: Run linters
|
|
run: npm run lint
|
|
|
|
- name: Run unit test
|
|
run: npm run test
|
|
|
|
- name: Build the app
|
|
run: npm run build
|