Skip to content

Repeat the test 1000 times #13

Repeat the test 1000 times

Repeat the test 1000 times #13

Workflow file for this run

name: Release
on:
push:
tags:
- "v*"
jobs:
test:
name: Release
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: yarn install --pure-lockfile
- name: Install playwright browsers
run: yarn test:install-deps
- name: Run tests
run: yarn test:ci
- name: Build
run: yarn build
- name: Publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
yarn publish