Skip to content

Commit

Permalink
Create build & test github actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
hamvocke authored Nov 30, 2024
1 parent 8b6a361 commit 9dc752f
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs

name: Build & Test

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 22.x
cache: 'npm'
- run: npm ci
- run: npm run build --if-present
- name: Install playwright browsers
run: npx playwright install --with-deps
- name: Run tests
run: npm run test:e2e

0 comments on commit 9dc752f

Please sign in to comment.