10000 Update packages/ui/components/localize/test/date/parseDate.test.js · ing-bank/lion@2992f7e · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fix: bug that accepted 3 digit year #486

fix: bug that accepted 3 digit year

fix: bug that accepted 3 digit year #486

Workflow file for this run

name: Verify changes
on: pull_request
jobs:
verify:
name: Verify changes
runs-on: ubuntu-latest
steps:
- uses: google/wireit@setup-github-actions-caching/v1
- uses: actions/checkout@v4
- name: Sanity check
run: node ./scripts/lock-scan.mjs
- name: Setup Node 18.x
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: npm
- name: Install Dependencies
run: npm install --ci
- name: Lint
run: npm run lint
# - name: Bundlesize
# run: npm run bundlesize
browser-tests:
name: Browser tests
runs-on: ubuntu-latest
steps:
- uses: google/wireit@setup-github-actions-caching/v1
- uses: actions/checkout@v4
- name: Setup Node 18.x
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: npm
- name: Install Dependencies
run: npm install --ci
- name: Playwright
run: npx playwright install --with-deps
- name: Test
run: npm run test:browser
node-tests:
name: Node tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [16.x, 18.x]
os: [ubuntu-latest, windows-latest]
steps:
- uses: google/wireit@setup-github-actions-caching/v1
- uses: actions/checkout@v4
- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install Dependencies
run: npm install --ci --force
- name: Test
run: npm run test:node
0