introduce calendar weeks #72
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
name: CI Test | |
on: | |
push: | |
branches: [ master ] | |
paths-ignore: | |
- '*.md' | |
- '.github/**' | |
pull_request: | |
branches: [ master ] | |
paths-ignore: | |
- '*.md' | |
- '.github/**' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Upgrade Chrome browser | |
run: | | |
sudo apt-get update | |
sudo apt-get --only-upgrade install google-chrome-stable | |
- name: Use Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '20.10.0' | |
- name: Install dependencies | |
run: npm ci | |
- name: Run tests | |
run: npm run test-with-coverage |