Skip to content

miratomcials-js-rac patch #2

miratomcials-js-rac patch

miratomcials-js-rac patch #2

Workflow file for this run

name: Test
on:
push:
branches:
- '**'
pull_request:
branches:
- 'master'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.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: Setup yarn
run: npm install -g yarn
- name: Use Node.js ${{ matrix.node-version }} with yarn caching
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- name: Install dependencies
run: yarn
- name: Build
run: yarn build
- name: Run tests
run: yarn test
- name: Run e2e tests
run: yarn e2e