-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (37 loc) · 991 Bytes
/
check.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Check
on:
- pull_request
jobs:
build:
strategy:
fail-fast: false
matrix:
node:
- '16'
platform:
- windows-latest
name: '${{ matrix.platform }} / Node.js v${{ matrix.node }}'
runs-on: ${{ matrix.platform }}
steps:
- name: Configure Git
run: |
git config --global core.autocrlf false
git config --global user.name "xyz"
git config --global user.email "x@y.z"
- name: Checkout Commit
uses: actions/checkout@v1
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install pnpm
run: |
npm install --g pnpm@6.32.0
- name: Install Packages
run: pnpm install
- name: Run Tests
run: |
pnpm run lint
pnpm run test
- name: Build App
run: pnpm run generate