Rename workflows for clarity

This commit is contained in:
Faisal Salman
2023-04-13 07:07:34 +07:00
parent 1b17315935
commit 0ac5028137
5 changed files with 5 additions and 5 deletions

24
.github/workflows/test-ci.yml vendored Normal file
View File

@@ -0,0 +1,24 @@
name: UAParser.js CI-Test
on: [push, pull_request]
permissions:
contents: read
jobs:
run-test:
runs-on: ubuntu-latest
strategy:
matrix:
arch: [amd64, ppc64le]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 'lts/*'
- name: Run the test
run: |
npm ci
npm run build
npx playwright install
npm run test-ci