Merge pull request #65 from Gateway-DAO/tests #102
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: Release | |
on: | |
push: | |
branches: ['main', 'develop'] | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18.x | |
- name: Install pnpm | |
run: npm install -g [email protected] | |
- name: Install uglifyjs | |
run: npm install uglify-js -g | |
- name: Install dependencies | |
run: pnpm install | |
- name: Install semantic-release extra plugins | |
run: pnpm install -D @semantic-release/changelog @semantic-release/git | |
- name: Lint | |
run: pnpm lint | |
- name: Build REST API | |
run: pnpm generate | |
- name: Format code | |
run: pnpm format | |
- name: Test project | |
run: pnpm test | |
- name: Build | |
run: pnpm build | |
- name: Release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: pnpm dlx [email protected] |