forked from IndustryEssentials/ymir
-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (26 loc) · 839 Bytes
/
web-pr.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
# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Web CI
on:
pull_request:
branches:
- master
- dev
- prerelease
jobs:
web-ci:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Use Node.js 18.16
uses: actions/setup-node@v3
with:
# node-version: 16.12 or above has issue at caching.
node-version: 18.16
cache: 'npm'
cache-dependency-path: ymir/web/package-lock.json
- name: Test with npm
run: |
time npm ci
time CI=true npm run test:coverage
working-directory: ymir/web