feat: Jump in item new flow #773
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: Pull Request | |
on: | |
pull_request: | |
branches: | |
- master | |
types: | |
- opened | |
- synchronize | |
jobs: | |
release: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- 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@v3 | |
with: | |
node-version: 18.x | |
registry-url: https://registry.npmjs.org/ | |
cache: 'npm' | |
- name: installing | |
run: npm install | |
- name: linters | |
uses: wearerequired/lint-action@v2 | |
with: | |
prettier: true | |
prettier_extensions: ts,tsx,js,jsx,json,md,mdx,css | |
continue_on_error: false | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: testing | |
run: npm test -- --coverage | |
- name: coveralls | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: setup envs | |
run: touch .env | |
- name: build image | |
id: build-image | |
uses: redhat-actions/buildah-build@v2 | |
with: | |
image: events | |
tags: ${{ github.sha }} | |
dockerfiles: | | |
./Dockerfile |