Skip to content

Merge remote-tracking branch 'origin/react18-and-chakra' into DSD-164… #5309

Merge remote-tracking branch 'origin/react18-and-chakra' into DSD-164…

Merge remote-tracking branch 'origin/react18-and-chakra' into DSD-164… #5309

Workflow file for this run

# For all pushes, this workflow will
# - Install deps
# - Lint
# - Test
name: CI
on: push
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
env:
CI: true
steps:
- uses: actions/checkout@v2
- name: Use Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: 16.x
- name: Cache and install node modules
uses: bahmutov/npm-install@v1
with:
useLockFile: false
- name: Lint
run: npm run lint
test:
name: Test
runs-on: ubuntu-latest
env:
CI: true
steps:
- uses: actions/checkout@v2
- name: Use Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: 16.x
- name: Cache and install node modules
uses: bahmutov/npm-install@v1
- name: Test
run: npm run test:ci