Skip to content

Merge pull request #205 from mediamonks/feature/#182-using-transition… #320

Merge pull request #205 from mediamonks/feature/#182-using-transition…

Merge pull request #205 from mediamonks/feature/#182-using-transition… #320

# 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 and Test CI
on:
workflow_dispatch:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '20.x'
- name: Install dependencies
env:
GSAP_TOKEN: ${{ secrets.GSAP_TOKEN }}
run: |
npm config set //npm.greensock.com/:_authToken=$GSAP_TOKEN
npm config set @gsap:registry=https://npm.greensock.com
npm ci
- name: Lint
run: npm run lint:eslint
- name: Build
run: npm run build
- name: Test
run: |
npx playwright install
npm run test