1
0
mirror of https://github.com/XFox111/PasswordGeneratorExtension.git synced 2026-04-22 08:08:01 +03:00

Reverted PR workflow to manual node setup

This commit is contained in:
2023-11-12 14:43:52 +00:00
parent ec96d406c4
commit 491afd58ab
+5 -1
View File
@@ -27,7 +27,6 @@ on:
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: node:20
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
@@ -36,6 +35,11 @@ jobs:
steps: steps:
- uses: actions/checkout@main - uses: actions/checkout@main
- uses: actions/setup-node@main
with:
cache: yarn
node-version: 20
- run: yarn install - run: yarn install
- run: yarn lint - run: yarn lint
- run: TARGET=${{ matrix.target }} yarn build - run: TARGET=${{ matrix.target }} yarn build