feat!: rework utcOffset parameter #96
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: Lint & Test | |
on: | |
workflow_call: | |
pull_request: | |
branches: | |
- main | |
- beta | |
- '+([0-9])?(.{+([0-9]),x}).x' | |
jobs: | |
lint-and-test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node: [16.x, 18.x, 20.x] | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
steps: | |
- name: Checkout project | |
uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: 'npm' | |
- name: Install packages | |
run: npm ci | |
- name: Build project | |
run: npm run build | |
- name: Check codestyle compliance | |
run: npm run lint | |
- name: Run tests | |
run: npm run test |