Merge pull request #25 from zkonduit/minor-bug-fix-encrypt #93
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: Integration Tests | |
on: | |
push: | |
branches: ['main'] | |
pull_request: | |
branches: ['main'] | |
paths-ignore: | |
- 'README.md' | |
jobs: | |
ts-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use pnpm 8 | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Use Node.js 18.12.1 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.12.1' | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: | | |
pnpm install --no-frozen-lockfile | |
env: | |
CI: false | |
NODE_ENV: development | |
- name: Run linter | |
run: pnpm run lint | |
- name: Run tests | |
run: pnpm test | |
- name: Build app | |
run: pnpm run build |