Update position duration dinamically #61
Workflow file for this run
This file contains hidden or 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: Lint HTML, CSS and JS files | |
| on: [pull_request] | |
| env: | |
| FORCE_COLOR: 2 | |
| NODE: 18 | |
| jobs: | |
| linting: | |
| runs-on: ubuntu-latest | |
| name: Checking lint on HTML, CSS and JS files | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: "${{ env.NODE }}" | |
| cache: npm | |
| - name: Install npm dependencies | |
| run: npm install --dev | |
| - name: Lint multiple file extensions | |
| run: ./.husky/prettier.sh |