Merge pull request #1 from stefanobartoletti/dependabot/npm_and_yarn/… #6
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: ci | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
ci: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node: [18] | |
steps: | |
- uses: DerYeger/yarn-setup-action@master | |
with: | |
node-version: ${{ matrix.node }} | |
- name: 📦 Install dependencies | |
run: yarn install | |
- name: 🚧 Set up project | |
run: yarn dev:prepare | |
- name: 🛠 Build project | |
run: yarn prepack | |
- name: ✅ Lint | |
run: yarn lint | |
# - name: 🧪 Test project | |
# run: yarn test |