Skip to content

chore(deps-dev): bump @swc/core from 1.3.107 to 1.7.36 (#55) #175

chore(deps-dev): bump @swc/core from 1.3.107 to 1.7.36 (#55)

chore(deps-dev): bump @swc/core from 1.3.107 to 1.7.36 (#55) #175

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions:
actions: read
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'yarn'
- run: yarn install --immutable
- run: yarn nx affected -t lint
build:
needs: ["lint"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'yarn'
- run: yarn install --immutable
- run: yarn nx affected -t build
test:
needs: ["build"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'yarn'
- run: yarn install --immutable
- run: yarn nx affected -t test
e2e:
needs: ["build","test"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'yarn'
- run: yarn install --immutable
- run: yarn nx affected -t e2e