Skip to content

prepare updating deps #126

prepare updating deps

prepare updating deps #126

Workflow file for this run

# This is a GitHub workflow YAML file
# see https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
#
# If you want to update this file it's recommended to use a YAML validator
# https://marketplace.visualstudio.com/items?itemName=redhat.vscode-yaml
# configured to validate with https://json.schemastore.org/github-workflow.json
#
# This workflow is responsible to perform various checks related to the codebase,
# For every push to main or on a pull request, it
# - ensures there is no eslint error on files
# - ensures there is no test failing
# - uploads code coverage from tests to codecov
#
# If all these steps are passing and there is a secrets.NPM_TOKEN and version in package.json
# is not already published, workflow published the package on npm.
name: main
on:
push:
branches:
- main
pull_request:
branches:
- "**"
jobs:
test:
strategy:
matrix:
os: [ubuntu-20.04, macos-12, windows-2022]
node: [20.8.0]
runs-on: ${{ matrix.os }}
name: test on ${{ matrix.os }} and node ${{ matrix.node }}
env:
CI: true
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Install node modules
run: npm install
- name: Install playwright
run: npm run playwright:install
- name: Run ESLint
run: npm run eslint
- name: Run tests
env:
GITHUB_TOKEN: ${{ secrets.TEST_GITHUB_TOKEN }} # to test publish package on github registry
run: npm run test