Skip to content

fix(deps): update dependency styled-components to v6 - autoclosed #17

fix(deps): update dependency styled-components to v6 - autoclosed

fix(deps): update dependency styled-components to v6 - autoclosed #17

Workflow file for this run

name: Check
on:
pull_request:
types: [opened, synchronize]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16
cache: npm
- name: Install Dependencies
run: |
npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
npm ci
- name: Audit
run: npm run audit --audit-level=high
- name: Lint
run: npm run lint
- name: Test
run: npm run test