Skip to content

Merge branch 'feat/playwright' of github.com:m0hanraj/feature-flags i… #96

Merge branch 'feat/playwright' of github.com:m0hanraj/feature-flags i…

Merge branch 'feat/playwright' of github.com:m0hanraj/feature-flags i… #96

Workflow file for this run

name: JS
on: [push]
jobs:
build:
name: Lint & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Run install
uses: borales/actions-yarn@v4
with:
cmd: install # will run `yarn install` command
- name: JS Lint
uses: borales/actions-yarn@v4
with:
cmd: lint:js
- name: Test the app
uses: borales/actions-yarn@v4
with:
cmd: test:js # will run `yarn test` command