Skip to content

fix: update esbuild dependency to version 0.25.4 in package.json and … #23

fix: update esbuild dependency to version 0.25.4 in package.json and …

fix: update esbuild dependency to version 0.25.4 in package.json and … #23

name: test-and-generate-artifact
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/cache@v1.1.2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn install
- run: yarn test
- run: yarn build
- name: Generate artifact
uses: actions/upload-artifact@v2
with:
name: react-native-rooster-nightly
path: build/*