Create main.yml

This commit is contained in:
Daniel Meyer 2023-02-15 16:32:54 +01:00 committed by GitHub
parent 62249eb0a2
commit 37539af1ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

38
.github/workflows/main.yml vendored Normal file
View 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