Merge pull request #2 from Iteam1337/ny-signatur-design #11
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 | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🛎️ Checkout | |
uses: actions/checkout@v3 | |
- name: 🔧 Test | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
- run: | | |
npm ci | |
npx playwright install | |
npm run check | |
npm run lint | |
npm run test | |
npm run build | |
docker build -t test . |