Skip to content

Bump follow-redirects from 1.15.2 to 1.15.4 #23

Bump follow-redirects from 1.15.2 to 1.15.4

Bump follow-redirects from 1.15.2 to 1.15.4 #23

Workflow file for this run

name: Unit tests
on:
push:
branches:
- master
pull_request:
branches:
- '**'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: run unit tests
run: |
npm i && npx playwright install chromium
npm test
- name: lint check
run: |
npm i
npm run lint
- name: Build
run: |
npm i
npm run build
- name: Run acceptance tests
working-directory: ./__test__
run: |
npm i && npx playwright install chromium
npm run test
env:
MAILINATOR_TOKEN: ${{secrets.MAILINATOR_TOKEN}}
MAILINATOR_DOMAIN: ${{secrets.MAILINATOR_DOMAIN}}