Merge pull request #1 from valantic/fix/sidebar-scroll #3
This file contains hidden or 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: 🚀 Test project on push | |
on: | |
push: | |
branches: ['main'] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🚚 Get latest code | |
uses: actions/checkout@v3 | |
- name: Install FE Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '22' | |
- name: 🔨Build Project | |
run: | | |
npm ci | |
npm run test |