Merge pull request #124 from BlackishGreen33/dependabot/npm_and_yarn/… #137
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 Test | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: git checkout | |
uses: actions/checkout@v4 | |
- name: pnpm setup | |
uses: pnpm/action-setup@v3 | |
with: | |
version: '9.1.2' | |
- name: Install node modules | |
run: pnpm install | |
- name: Build Test | |
run: pnpm run build |