Skip to content

Merge pull request #458 from Fekide/dependabot/npm_and_yarn/eslint-pl… #155

Merge pull request #458 from Fekide/dependabot/npm_and_yarn/eslint-pl…

Merge pull request #458 from Fekide/dependabot/npm_and_yarn/eslint-pl… #155

Workflow file for this run

name: Build
on:
push:
branches:
- main
- next
jobs:
lint:
uses: ./.github/workflows/lint.yml
unittest:
uses: ./.github/workflows/unittest.yml
e2e:
uses: ./.github/workflows/e2e.yml
release:
needs:
- lint
- unittest
- e2e
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install dependencies
run: yarn
- name: Release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: yarn release