Translations update from Hosted Weblate #59
Workflow file for this run
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
# This workflow will do a clean install of node dependencies and run tests | |
name: Test | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
unit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Node.js and run tests | |
uses: actions/[email protected] | |
with: | |
node-version: 14.x | |
- name: Setup timezone | |
uses: zcong1993/setup-timezone@master | |
with: | |
timezone: Europe/Stockholm | |
- run: yarn install --immutable --silent --non-interactive 2> >(grep -v warning 1>&2) | |
- run: yarn audit | |
- run: yarn lint | |
- run: yarn test |