release: bump version to 2.4.0 #126
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: Build Project | |
on: | |
push | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: pnpm/action-setup@v2.2.2 | |
with: | |
version: 7 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 18 | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Run Tests | |
run: pnpm test react-cookie-service | |
- name: Build project | |
run: pnpm run build react-cookie-service |