Create main.yml
This commit is contained in:
parent
62249eb0a2
commit
37539af1ed
38
.github/workflows/main.yml
vendored
Normal file
38
.github/workflows/main.yml
vendored
Normal file
@ -0,0 +1,38 @@
|
||||
name: CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
core:
|
||||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Set node version
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version-file: '.nvmrc'
|
||||
|
||||
- name: Reuse npm cache folder
|
||||
uses: actions/cache@v3
|
||||
env:
|
||||
cache-name: cache-node-modules
|
||||
with:
|
||||
path: |
|
||||
~/.npm
|
||||
./node_modules
|
||||
key: ${{ runner.os }}-npm-core-x8-${{ hashFiles('**/package.json') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-npm-core-x8-
|
||||
|
||||
- run: npm install
|
||||
- run: npm run lint
|
||||
- run: npm run export
|
||||
- run: npm run preview
|
||||
- run: npm run test:export
|
||||
- run: npm run test:docs
|
||||
- run: npm run test:e2e
|
||||
Loading…
x
Reference in New Issue
Block a user