π date in frontend should be formatted according to browser settings β¦ #953
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test all | |
on: | |
push: | |
branches: | |
- master | |
- '[0-9]+.[0-9]+.x' | |
tags: | |
- '**' | |
pull_request: | |
branches: | |
- master | |
- '[0-9]+.[0-9]+.x' | |
jobs: | |
node: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '15' | |
- name: Install dependencies | |
run: | | |
npm install -g grunt-cli grunt yarn | |
yarn | |
- name: tests | |
run: grunt test | |
- name: build | |
run: grunt build |