Skip to content

fix: Use the keys of the map as the CURRENT_AVAILABLE_NOTIFICATIONS #310

fix: Use the keys of the map as the CURRENT_AVAILABLE_NOTIFICATIONS

fix: Use the keys of the map as the CURRENT_AVAILABLE_NOTIFICATIONS #310

Workflow file for this run

name: Pull Request
on:
pull_request:
branches:
- master
types:
- opened
- synchronize
jobs:
release:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Reconfigure git to use HTTP authentication
run: >
git config --global url."https://github.com/".insteadOf "ssh://[email protected]/"
- name: node.js 18
uses: actions/setup-node@v2
with:
node-version: 18.x
registry-url: https://registry.npmjs.org/
cache: "npm"
- name: installing
run: npm install
# review this step
#- name: creating @MUI component and build storybook
# run: npm run build-storybook
- name: linters
uses: wearerequired/lint-action@v1
with:
prettier: true
prettier_extensions: ts,tsx,js,jsx,json,md,mdx,css
continue_on_error: false
github_token: ${{ secrets.GITHUB_TOKEN }}