Skip to content

Commit

Permalink
Add basic workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
textbook committed Jan 10, 2024
1 parent 901ca99 commit 339c6f2
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI

on:
push:
branches: [ v2 ]

jobs:
nodejs:
runs-on: ubuntu-latest
steps:
- uses: textbook/take-action@nodejs
- run: npmx playwright install --with-deps
- run: npm run lint
- run: npm test
- run: npm run e2e
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
- uses: docker/build-push-action@v5
with:
push: false

0 comments on commit 339c6f2

Please sign in to comment.