Skip to content

NoamGaash is testing πŸš€ #31

NoamGaash is testing πŸš€

NoamGaash is testing πŸš€ #31

Workflow file for this run

name: Build and test the library
run-name: ${{ github.actor }} is testing πŸš€
on: [push, pull_request]
jobs:
test-package:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: "npm"
- name: install
run: |
npm ci
- name: build
run: npm run build
- name: lint
run: |
npm run lint
- name: playwright install
run: |
npx playwright install
- name: test
run: |
npm test